D | ftplib.py | 112 def __init__(self, host='', user='', passwd='', acct='', argument 119 self.login(user, passwd, acct) 401 def login(self, user = '', passwd = '', acct = ''): argument 407 if not acct: 408 acct = '' 422 resp = self.sendcmd('ACCT ' + acct) 548 def acct(self, password): member in FTP 724 def __init__(self, host='', user='', passwd='', acct='', keyfile=None, argument 745 FTP.__init__(self, host, user, passwd, acct, timeout, source_address) 747 def login(self, user='', passwd='', acct='', secure=True): argument [all …]
|