D | ftplib.py | 112 def __init__(self, host='', user='', passwd='', acct='', argument 119 self.login(user, passwd, acct) 399 def login(self, user = '', passwd = '', acct = ''): argument 405 if not acct: 406 acct = '' 420 resp = self.sendcmd('ACCT ' + acct) 546 def acct(self, password): member in FTP 722 def __init__(self, host='', user='', passwd='', acct='', keyfile=None, argument 743 FTP.__init__(self, host, user, passwd, acct, timeout, source_address) 745 def login(self, user='', passwd='', acct='', secure=True): argument [all …]
|