💎 PREMIUM: ./library/ftplib.html - High Quality
21.13. ftplib — FTP protocol client¶
Source code: Lib/ftplib.py
This module defines the class FTP and a few related items. The
FTP class implements the client side of the FTP protocol. You can use
this to write Python programs that perform a variety of automated FTP jobs, such
as mirroring other FTP servers. It is also used by the module
urllib.request to handle URLs that use FTP. For more information on FTP
(File Transfer Protocol), see Internet RFC 959.
Here’s a sample session using the ftplib module:
>>> from ftplib import FTP
>>> ftp = FTP('ftp.debian.org') # connect to host, default port
>>> ftp.login() # user anonymous, passwd anonymous@
'230 Login successful.'
>>> ftp.cwd('debian') # change into "debian" directory
>>> ftp.retrlines('LIST') # list directory contents
-rw-rw-r-- 1 1176 1176 1063 Jun 15 10:18 README
...
drwxr-sr-x 5 1176 1176 4096 Dec 19 2000 pool
drwxr-sr-x 4 1176 1176 4096 Nov 17 2008 project
drwxr-xr-x 3 1176 1176 4096 Oct 10 2012 tools
'226 Directory send OK.'
>>> ftp.retrbinary('RETR README', open('README', 'wb').write)
'226 Transfer complete.'
>>> ftp.quit()
The module defines the following items:
-
class
ftplib.FTP(host='', user='', passwd='', acct='', timeout=None, source_address=None)¶ Return a new instance of the
FTPclass. When host is given, the method callconnect(host)is made. When user is given, additionally the method calllogin(user, passwd, acct)is made (where passwd and acct default to the empty string when not given). The optional timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (if is not specified, the global default timeout setting will be used). source_address is a 2-tuple(host, port)for the socket to bind to as its source address before connecting.The
FTPclass supports thewithstatement, e.g.:>>> from ftplib import FTP >>> with FTP("ftp1.at.proftpd.org") as ftp: ... ftp.login() ... ftp.dir() ... '230 Anonymous login ok, restrictions apply.' dr-xr-xr-x 9 ftp ftp 154 May 6 10:43 . dr-xr-xr-x 9 ftp ftp 154 May 6 10:43 .. dr-xr-xr-x 5 ftp ftp 4096 May 6 10:43 CentOS dr-xr-xr-x 3 ftp ftp 18 Jul 10 2008 Fedora >>>
Changed in version 3.2: Support for the
withstatement was added.Changed in version 3.3: source_address parameter was added.
-
class
ftplib.FTP_TLS(host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None, timeout=None, source_address=None)¶ A
FTPsubclass which adds TLS support to FTP as described in RFC 4217. Connect as usual to port 21 implicitly securing the FTP control connection before authenticating. Securing the data connection requires the user to explicitly ask for it by calling theprot_p()method. context is assl.SSLContextobject which allows bundling SSL configuration options, certificates and private keys into a single (potentially long-lived) structure. Please read Security considerations for best practices.keyfile and certfile are a legacy alternative to context – they can point to PEM-formatted private key and certificate chain files (respectively) for the SSL connection.
New in version 3.2.
Changed in version 3.3: source_address parameter was added.
Changed in version 3.4: The class now supports hostname check with
ssl.SSLContext.check_hostnameand Server Name Indication (seessl.HAS_SNI).Deprecated since version 3.6: keyfile and certfile are deprecated in favor of context. Please use
ssl.SSLContext.load_cert_chain()instead, or letssl.create_default_context()select the system’s trusted CA certificates for you.Here’s a sample session using the
FTP_TLSclass:>>> ftps = FTP_TLS('ftp.pureftpd.org') >>> ftps.login() '230 Anonymous user logged in' >>> ftps.prot_p() '200 Data protection level set to "private"' >>> ftps.nlst() ['6jack', 'OpenBSD', 'antilink', 'blogbench', 'bsdcam', 'clockspeed', 'djbdns-jedi', 'docs', 'eaccelerator-jedi', 'favicon.ico', 'francotone', 'fugu', 'ignore', 'libpuzzle', 'metalog', 'minidentd', 'misc', 'mysql-udf-global-user-variables', 'php-jenkins-hash', 'php-skein-hash', 'php-webdav', 'phpaudit', 'phpbench', 'pincaster', 'ping', 'posto', 'pub', 'public', 'public_keys', 'pure-ftpd', 'qscan', 'qtc', 'sharedance', 'skycache', 'sound', 'tmp', 'ucarp']
-
exception
ftplib.error_reply¶ Exception raised when an unexpected reply is received from the server.
-
exception
ftplib.error_temp¶ Exception raised when an error code signifying a temporary error (response codes in the range 400–499) is received.
-
exception
ftplib.error_perm¶ Exception raised when an error code signifying a permanent error (response codes in the range 500–599) is received.
-
exception
ftplib.error_proto¶ Exception raised when a reply is received from the server that does not fit the response specifications of the File Transfer Protocol, i.e. begin with a digit in the range 1–5.
-
ftplib.all_errors¶ The set of all exceptions (as a tuple) that methods of
FTPinstances may raise as a result of problems with the FTP connection (as opposed to programming errors made by the caller). This set includes the four exceptions listed above as well asOSError.
See also
- Module
netrc Parser for the
.netrcfile format. The file.netrcis typically used by FTP clients to load user authentication information before prompting the user.
21.13.1. FTP Objects¶
Several methods are available in two flavors: one for handling text files and
another for binary files. These are named for the command which is used
followed by lines for the text version or binary for the binary version.
FTP instances have the following methods:
-
FTP.set_debuglevel(level)¶ Set the instance’s debugging level. This controls the amount of debugging output printed. The default,
0, produces no debugging output. A value of1produces a moderate amount of debugging output, generally a single line per request. A value of2or higher produces the maximum amount of debugging output, logging each line sent and received on the control connection.
-
FTP.connect(host='', port=0, timeout=None, source_address=None)¶ Connect to the given host and port. The default port number is
21, as specified by the FTP protocol specification. It is rarely needed to specify a different port number. This function should be called only once for each instance; it should not be called at all if a host was given when the instance was created. All other methods can only be used after a connection has been made. The optional timeout parameter specifies a timeout in seconds for the connection attempt. If no timeout is passed, the global default timeout setting will be used. source_address is a 2-tuple(host, port)for the socket to bind to as its source address before connecting.Changed in version 3.3: source_address parameter was added.
-
FTP.getwelcome()¶ Return the welcome message sent by the server in reply to the initial connection. (This message sometimes contains disclaimers or help information that may be relevant to the user.)
-
FTP.login(user='anonymous', passwd='', acct='')¶ Log in as the given user. The passwd and acct parameters are optional and default to the empty string. If no user is specified, it defaults to
'anonymous'. If user is'anonymous', the default passwd is'anonymous@'. This function should be called only once for each instance, after a connection has been established; it should not be called at all if a host and user were given when the instance was created. Most FTP commands are only allowed after the client has logged in. The acct parameter supplies “accounting information”; few systems implement this.
-
FTP.abort()¶ Abort a file transfer that is in progress. Using this does not always work, but it’s worth a try.
-
FTP.sendcmd(cmd)¶ Send a simple command string to the server and return the response string.
-
FTP.voidcmd(cmd)¶ Send a simple command string to the server and handle the response. Return nothing if a response code corresponding to success (codes in the range 200–299) is received. Raise
error_replyotherwise.
-
FTP.retrbinary(cmd, callback, blocksize=8192, rest=None)¶ Retrieve a file in binary transfer mode. cmd should be an appropriate
RETRcommand:'RETR filename'. The callback function is called for each block of data received, with a single bytes argument giving the data block. The optional blocksize argument specifies the maximum chunk size to read on the low-level socket object created to do the actual transfer (which will also be the largest size of the data blocks passed to callback). A reasonable default is chosen. rest means the same thing as in thetransfercmd()method.
-
FTP.retrlines(cmd, callback=None)¶ Retrieve a file or directory listing in ASCII transfer mode. cmd should be an appropriate
RETRcommand (seeretrbinary()) or a command such asLISTorNLST(usually just the string'LIST').LISTretrieves a list of files and information about those files.NLSTretrieves a list of file names. The callback function is called for each line with a string argument containing the line with the trailing CRLF stripped. The default callback prints the line tosys.stdout.
-
FTP.set_pasv(val)¶ Enable “passive” mode if val is true, otherwise disable passive mode. Passive mode is on by default.
-
FTP.storbinary(cmd, fp, blocksize=8192
