ftplib — FTP protocol client¶
Source code:Lib/ftplib.py
This module defines the classFTP and a few related items. TheFTP class implements the client side of the FTP protocol. You can usethis to write Python programs that perform a variety of automated FTP jobs, suchas mirroring other FTP servers. It is also used by the moduleurllib.request to handle URLs that use FTP. For more information on FTP(File Transfer Protocol), see InternetRFC 959.
Here’s a sample session using theftplib module:
>>>fromftplibimportFTP>>>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 pooldrwxr-sr-x 4 1176 1176 4096 Nov 17 2008 projectdrwxr-xr-x 3 1176 1176 4096 Oct 10 2012 tools'226 Directory send OK.'>>>withopen('README','wb')asfp:>>>ftp.retrbinary('RETR README',fp.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. Whenhost is given, themethod callconnect(host)is made. Whenuser is given, additionallythe method calllogin(user,passwd,acct)is made (wherepasswd andacct default to the empty string when not given). The optionaltimeoutparameter specifies a timeout in seconds for blocking operations like theconnection attempt (if is not specified, the global default timeout settingwill be used).source_address is a 2-tuple(host,port)for the socketto bind to as its source address before connecting.The
FTPclass supports thewithstatement, e.g.:>>>fromftplibimportFTP>>>withFTP("ftp1.at.proftpd.org")asftp:...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 CentOSdr-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 inRFC 4217.Connect as usual to port 21 implicitly securing the FTP control connectionbefore authenticating. Securing the data connection requires the user toexplicitly ask for it by calling theprot_p()method.contextis assl.SSLContextobject which allows bundling SSL configurationoptions, certificates and private keys into a single (potentiallylong-lived) structure. Please readSecurity considerations for best practices.keyfile andcertfile are a legacy alternative tocontext – theycan 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_hostnameandServer Name Indication (seessl.HAS_SNI).Deprecated since version 3.6:keyfile andcertfile are deprecated in favor ofcontext.Please use
ssl.SSLContext.load_cert_chain()instead, or letssl.create_default_context()select the system’s trusted CAcertificates 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 (responsecodes in the range 400–499) is received.
- exception
ftplib.error_perm¶ Exception raised when an error code signifying a permanent error (responsecodes in the range 500–599) is received.
- exception
ftplib.error_proto¶ Exception raised when a reply is received from the server that does not fitthe response specifications of the File Transfer Protocol, i.e. begin with adigit 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 (asopposed to programming errors made by the caller). This set includes thefour exceptions listed above as well asOSErrorandEOFError.
See also
- Module
netrc Parser for the
.netrcfile format. The file.netrcistypically used by FTP clients to load user authentication informationbefore prompting the user.
FTP Objects¶
Several methods are available in two flavors: one for handling text files andanother for binary files. These are named for the command which is usedfollowed bylines for the text version orbinary 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 debuggingoutput printed. The default,
0, produces no debugging output. A value of1produces a moderate amount of debugging output, generally a single lineper request. A value of2or higher produces the maximum amount ofdebugging 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, asspecified by the FTP protocol specification. It is rarely needed to specify adifferent port number. This function should be called only once for eachinstance; it should not be called at all if a host was given when the instancewas created. All other methods can only be used after a connection has beenmade.The optionaltimeout parameter specifies a timeout in seconds for theconnection attempt. If notimeout is passed, the global default timeoutsetting will be used.source_address is a 2-tuple(host,port)for the socket to bind to asits source address before connecting.Raises anauditing event
ftplib.connectwith argumentsself,host,port.Changed in version 3.3:source_address parameter was added.
FTP.getwelcome()¶Return the welcome message sent by the server in reply to the initialconnection. (This message sometimes contains disclaimers or help informationthat may be relevant to the user.)
FTP.login(user='anonymous',passwd='',acct='')¶Log in as the givenuser. Thepasswd andacct parameters are optional anddefault to the empty string. If nouser is specified, it defaults to
'anonymous'. Ifuser is'anonymous', the defaultpasswd 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 ahost and user were given when the instance was created. Most FTP commands areonly allowed after the client has logged in. Theacct parameter supplies“accounting information”; few systems implement this.
FTP.abort()¶Abort a file transfer that is in progress. Using this does not always work, butit’s worth a try.
FTP.sendcmd(cmd)¶Send a simple command string to the server and return the response string.
Raises anauditing event
ftplib.sendcmdwith argumentsself,cmd.
FTP.voidcmd(cmd)¶Send a simple command string to the server and handle the response. Returnnothing if a response code corresponding to success (codes in the range200–299) is received. Raise
error_replyotherwise.Raises anauditing event
ftplib.sendcmdwith argumentsself,cmd.
FTP.retrbinary(cmd,callback,blocksize=8192,rest=None)¶Retrieve a file in binary transfer mode.cmd should be an appropriate
RETRcommand:'RETRfilename'. Thecallback function is called foreach block of data received, with a single bytes argument giving the datablock. The optionalblocksize argument specifies the maximum chunk size toread on the low-level socket object created to do the actual transfer (whichwill also be the largest size of the data blocks passed tocallback). Areasonable 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 bean 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.Thecallback function is called for each line with a string argumentcontaining the line with the trailing CRLF stripped. The defaultcallbackprints the line tosys.stdout.
FTP.set_pasv(val)¶Enable “passive” mode ifval is true, otherwise disable passive mode.Passive mode is on by default.
FTP.storbinary(cmd,fp,blocksize=8192,callback=None,rest=None)¶Store a file in binary transfer mode.cmd should be an appropriate
STORcommand:"STORfilename".fp is afile object(opened in binary mode) which is read until EOF using itsread()method in blocks of sizeblocksize to provide the data to be stored.Theblocksize argument defaults to 8192.callback is an optional singleparameter callable that is called on each block of data after it is sent.rest means the same thing as in thetransfercmd()method.Changed in version 3.2:rest parameter added.
FTP.storlines(cmd,fp,callback=None)¶Store a file in ASCII transfer mode.cmd should be an appropriate
STORcommand (seestorbinary()). Lines are read until EOF from thefile objectfp (opened in binary mode) using itsreadline()method to provide the data to be stored.callback is an optional singleparameter callable that is called on each line after it is sent.
FTP.transfercmd(cmd,rest=None)¶Initiate a transfer over the data connection. If the transfer is active, send an
EPRTorPORTcommand and the transfer command specified bycmd, andaccept the connection. If the server is passive, send anEPSVorPASVcommand, connect to it, and start the transfer command. Either way, return thesocket for the connection.If optionalrest is given, a
RESTcommand is sent to the server, passingrest as an argument.rest is usually a byte offset into the requested file,telling the server to restart sending the file’s bytes at the requested offset,skipping over the initial bytes. Note however thatRFC 959 requires only thatrest be a string containing characters in the printable range from ASCII code33 to ASCII code 126. Thetransfercmd()method, therefore, convertsrest to a string, but no check is performed on the string’s contents. If theserver does not recognize theRESTcommand, anerror_replyexceptionwill be raised. If this happens, simply calltransfercmd()without arest argument.
FTP.ntransfercmd(cmd,rest=None)¶Like
transfercmd(), but returns a tuple of the data connection and theexpected size of the data. If the expected size could not be computed,Nonewill be returned as the expected size.cmd andrest means the same thing asintransfercmd().
FTP.mlsd(path="",facts=[])¶List a directory in a standardized format by using
MLSDcommand(RFC 3659). Ifpath is omitted the current directory is assumed.facts is a list of strings representing the type of information desired(e.g.["type","size","perm"]). Return a generator object yielding atuple of two elements for every file found in path. First element is thefile name, the second one is a dictionary containing facts about the filename. Content of this dictionary might be limited by thefacts argumentbut server is not guaranteed to return all requested facts.New in version 3.3.
FTP.nlst(argument[,...])¶Return a list of file names as returned by the
NLSTcommand. Theoptionalargument is a directory to list (default is the current serverdirectory). Multiple arguments can be used to pass non-standard options totheNLSTcommand.Note
If your server supports the command,
mlsd()offers a better API.
FTP.dir(argument[,...])¶Produce a directory listing as returned by the
LISTcommand, printing it tostandard output. The optionalargument is a directory to list (default is thecurrent server directory). Multiple arguments can be used to pass non-standardoptions to theLISTcommand. If the last argument is a function, it is usedas acallback function as forretrlines(); the default prints tosys.stdout. This method returnsNone.Note
If your server supports the command,
mlsd()offers a better API.
FTP.rename(fromname,toname)¶Rename filefromname on the server totoname.
FTP.delete(filename)¶Remove the file namedfilename from the server. If successful, returns thetext of the response, otherwise raises
error_permon permission errors orerror_replyon other errors.
FTP.cwd(pathname)¶Set the current directory on the server.
FTP.mkd(pathname)¶Create a new directory on the server.
FTP.pwd()¶Return the pathname of the current directory on the server.
FTP.rmd(dirname)¶Remove the directory nameddirname on the server.
FTP.size(filename)¶Request the size of the file namedfilename on the server. On success, thesize of the file is returned as an integer, otherwise
Noneis returned.Note that theSIZEcommand is not standardized, but is supported by manycommon server implementations.
FTP.quit()¶Send a
QUITcommand to the server and close the connection. This is the“polite” way to close a connection, but it may raise an exception if the serverresponds with an error to theQUITcommand. This implies a call to theclose()method which renders theFTPinstance useless forsubsequent calls (see below).
FTP.close()¶Close the connection unilaterally. This should not be applied to an alreadyclosed connection such as after a successful call to
quit().After this call theFTPinstance should not be used any more (aftera call toclose()orquit()you cannot reopen theconnection by issuing anotherlogin()method).
FTP_TLS Objects¶
FTP_TLS class inherits fromFTP, defining these additional objects:
FTP_TLS.ssl_version¶The SSL version to use (defaults to
ssl.PROTOCOL_SSLv23).
FTP_TLS.auth()¶Set up a secure control connection by using TLS or SSL, depending on whatis specified in the
ssl_versionattribute.Changed in version 3.4:The method now supports hostname check with
ssl.SSLContext.check_hostnameandServer Name Indication (seessl.HAS_SNI).
FTP_TLS.ccc()¶Revert control channel back to plaintext. This can be useful to takeadvantage of firewalls that know how to handle NAT with non-secure FTPwithout opening fixed ports.
New in version 3.3.
FTP_TLS.prot_p()¶Set up secure data connection.
FTP_TLS.prot_c()¶Set up clear text data connection.