

source_address is a 2-tuple (host, port) for the socket Parameter specifies a timeout in seconds for blocking operations like theĬonnection attempt (if is not specified, the global default timeout setting The method call login(user, passwd, acct) is made (where passwd andĪcct default to the empty string when not given). FTP ( host = '', user = '', passwd = '', acct = '', timeout = None, source_address = None, *, encoding = 'utf-8' ) ¶ The module defines the following items: class ftplib. cwd ( 'debian' ) # change into "debian" directory '250 Directory successfully changed.' > ftp. login () # user anonymous, passwd '230 Login successful.' > ftp. from ftplib import FTP > ftp = FTP ( 'ftp.us.' ) # connect to host, default port > ftp.
