ftplib —- FTP 协议客户端
源代码:Lib/ftplib.py
This module defines the class FTP
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 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.'
- >>> with open('README', 'wb') as fp:
- >>> ftp.retrbinary('RETR README', fp.write)
- '226 Transfer complete.'
- >>> ftp.quit()
这个模块定义了以下内容:
- class
ftplib.
FTP
(host='', user='', passwd='', acct='', timeout=None, source_address=None) - Return a new instance of the
FTP
class. When host is given, themethod callconnect(host)
is made. When user is given, additionallythe method calllogin(user, passwd, acct)
is made (where passwd andacct default to the empty string when not given). The optional timeout_parameter 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 FTP
class supports the with
statement, e.g.:
- >>> from ftplib import FTP
- >>> with FTP("ftp1.at.proftpd.org") as ftp:
- ... ftp.login()
- ... ftp.dir()
- ... # doctest: +SKIP
- '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
- >>>
在 3.2 版更改: 支持了 with
语句。
在 3.3 版更改: source_address parameter was added.
- class
ftplib.
FTPTLS
(_host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None, timeout=None, source_address=None) - A
FTP
subclass 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. _context_is assl.SSLContext
object which allows bundling SSL configurationoptions, certificates and private keys into a single (potentiallylong-lived) structure. Please read Security considerations for best practices.
keyfile and certfile are a legacy alternative to context — theycan point to PEM-formatted private key and certificate chain files(respectively) for the SSL connection.
3.2 新版功能.
在 3.3 版更改: source_address parameter was added.
在 3.4 版更改: The class now supports hostname check withssl.SSLContext.check_hostname
and Server Name Indication (seessl.HAS_SNI
).
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 CAcertificates for you.
Here's a sample session using the FTP_TLS
class:
- >>> 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 raised when an error code signifying a temporary error (responsecodes in the range 400—499) is received.
Exception raised when an error code signifying a permanent error (responsecodes in the range 500—599) is received.
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.
- The set of all exceptions (as a tuple) that methods of
FTP
instances 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 asOSError
andEOFError
.
参见
- Module
netrc
- Parser for the
.netrc
file format. The file.netrc
istypically 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 by lines
for the text version or binary
for the binary version.
FTP
instances have the following methods:
FTP.
setdebuglevel
(_level)Set the instance's debugging level. This controls the amount of debuggingoutput printed. The default,
0
, produces no debugging output. A value of1
produces a moderate amount of debugging output, generally a single lineper request. A value of2
or 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 optional timeout parameter specifies a timeout in seconds for theconnection attempt. If no timeout 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 an auditing event ftplib.connect
with arguments self
, host
, port
.
在 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.)
Log in as the given user. The passwd and acct parameters are optional anddefault 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 ahost and user were given when the instance was created. Most FTP commands areonly allowed after the client has logged in. The acct parameter supplies"accounting information"; few systems implement this.Abort a file transfer that is in progress. Using this does not always work, butit's worth a try.
- Send a simple command string to the server and return the response string.
Raises an auditing event ftplib.sendcmd
with arguments self
, 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_reply
otherwise.
Raises an auditing event ftplib.sendcmd
with arguments self
, cmd
.
FTP.
retrbinary
(cmd, callback, blocksize=8192, rest=None)Retrieve a file in binary transfer mode. cmd should be an appropriate
RETR
command:'RETR filename'
. The callback function is called foreach block of data received, with a single bytes argument giving the datablock. The optional blocksize 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 to callback). Areasonable default is chosen. rest means the same thing as in thetransfercmd()
method.Retrieve a file or directory listing in ASCII transfer mode. cmd should bean appropriate
RETR
command (seeretrbinary()
) or a command such asLIST
orNLST
(usually just the string'LIST'
).LIST
retrieves a list of files and information about those files.NLST
retrieves a list of file names.The callback function is called for each line with a string argumentcontaining the line with the trailing CRLF stripped. The default _callback_prints the line tosys.stdout
.Enable "passive" mode if val 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
STOR
command:"STOR filename"
. fp is a file object(opened in binary mode) which is read until EOF using itsread()
method in blocks of size blocksize to provide the data to be stored.The blocksize 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.
在 3.2 版更改: rest parameter added.
FTP.
storlines
(cmd, fp, callback=None)Store a file in ASCII transfer mode. cmd should be an appropriate
STOR
command (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.- Initiate a transfer over the data connection. If the transfer is active, send an
EPRT
orPORT
command and the transfer command specified by cmd, andaccept the connection. If the server is passive, send anEPSV
orPASV
command, connect to it, and start the transfer command. Either way, return thesocket for the connection.
If optional rest is given, a REST
command 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 that RFC 959 requires only thatrest be a string containing characters in the printable range from ASCII code33 to ASCII code 126. The transfercmd()
method, therefore, convertsrest to a string, but no check is performed on the string's contents. If theserver does not recognize the REST
command, an error_reply
exceptionwill be raised. If this happens, simply call transfercmd()
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,None
will be returned as the expected size. cmd and rest means the same thing asintransfercmd()
.- List a directory in a standardized format by using
MLSD
command(RFC 3659). If path 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 the facts argumentbut server is not guaranteed to return all requested facts.
3.3 新版功能.
FTP.
nlst
(argument[, …])- Return a list of file names as returned by the
NLST
command. Theoptional argument is a directory to list (default is the current serverdirectory). Multiple arguments can be used to pass non-standard options totheNLST
command.
注解
If your server supports the command, mlsd()
offers a better API.
FTP.
dir
(argument[, …])- Produce a directory listing as returned by the
LIST
command, printing it tostandard output. The optional argument is a directory to list (default is thecurrent server directory). Multiple arguments can be used to pass non-standardoptions to theLIST
command. If the last argument is a function, it is usedas a callback function as forretrlines()
; the default prints tosys.stdout
. This method returnsNone
.
注解
If your server supports the command, mlsd()
offers a better API.
FTP.
rename
(fromname, toname)Rename file fromname on the server to toname.
Remove the file named filename from the server. If successful, returns thetext of the response, otherwise raises
error_perm
on permission errors orerror_reply
on other errors.Set the current directory on the server.
Create a new directory on the server.
Return the pathname of the current directory on the server.
Remove the directory named dirname on the server.
Request the size of the file named filename on the server. On success, thesize of the file is returned as an integer, otherwise
None
is returned.Note that theSIZE
command is not standardized, but is supported by manycommon server implementations.Send a
QUIT
command 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 theQUIT
command. This implies a call to theclose()
method which renders theFTP
instance useless forsubsequent calls (see below).- Close the connection unilaterally. This should not be applied to an alreadyclosed connection such as after a successful call to
quit()
.After this call theFTP
instance 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 from FTP
, defining these additional objects:
FTP_TLS.
ssl_version
The SSL version to use (defaults to
ssl.PROTOCOL_SSLv23
).- Set up a secure control connection by using TLS or SSL, depending on whatis specified in the
ssl_version
attribute.
在 3.4 版更改: The method now supports hostname check withssl.SSLContext.check_hostname
and Server 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.
3.3 新版功能.