D | ftplib.py | 109 def __init__(self, host='', user='', passwd='', acct='', argument 123 self.login(user, passwd, acct) 395 def login(self, user = '', passwd = '', acct = ''): argument 401 if not acct: 402 acct = '' 416 resp = self.sendcmd('ACCT ' + acct) 542 def acct(self, password): member in FTP 718 def __init__(self, host='', user='', passwd='', acct='', argument 740 super().__init__(host, user, passwd, acct, 743 def login(self, user='', passwd='', acct='', secure=True): argument [all …]
|