| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | :mod:`ftplib` --- FTP protocol client | 
|  | 2 | ===================================== | 
|  | 3 |  | 
|  | 4 | .. module:: ftplib | 
|  | 5 | :synopsis: FTP protocol client (requires sockets). | 
|  | 6 |  | 
|  | 7 |  | 
|  | 8 | .. index:: | 
|  | 9 | pair: FTP; protocol | 
|  | 10 | single: FTP; ftplib (standard module) | 
|  | 11 |  | 
|  | 12 | This module defines the class :class:`FTP` and a few related items. The | 
|  | 13 | :class:`FTP` class implements the client side of the FTP protocol.  You can use | 
|  | 14 | this to write Python programs that perform a variety of automated FTP jobs, such | 
|  | 15 | as mirroring other ftp servers.  It is also used by the module :mod:`urllib` to | 
|  | 16 | handle URLs that use FTP.  For more information on FTP (File Transfer Protocol), | 
|  | 17 | see Internet :rfc:`959`. | 
|  | 18 |  | 
|  | 19 | Here's a sample session using the :mod:`ftplib` module:: | 
|  | 20 |  | 
|  | 21 | >>> from ftplib import FTP | 
|  | 22 | >>> ftp = FTP('ftp.cwi.nl')   # connect to host, default port | 
|  | 23 | >>> ftp.login()               # user anonymous, passwd anonymous@ | 
|  | 24 | >>> ftp.retrlines('LIST')     # list directory contents | 
|  | 25 | total 24418 | 
|  | 26 | drwxrwsr-x   5 ftp-usr  pdmaint     1536 Mar 20 09:48 . | 
|  | 27 | dr-xr-srwt 105 ftp-usr  pdmaint     1536 Mar 21 14:32 .. | 
|  | 28 | -rw-r--r--   1 ftp-usr  pdmaint     5305 Mar 20 09:48 INDEX | 
|  | 29 | . | 
|  | 30 | . | 
|  | 31 | . | 
|  | 32 | >>> ftp.retrbinary('RETR README', open('README', 'wb').write) | 
|  | 33 | '226 Transfer complete.' | 
|  | 34 | >>> ftp.quit() | 
|  | 35 |  | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 36 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 37 | The module defines the following items: | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 38 |  | 
|  | 39 | .. class:: FTP([host[, user[, passwd[, acct[, timeout]]]]]) | 
|  | 40 |  | 
|  | 41 | Return a new instance of the :class:`FTP` class.  When *host* is given, the | 
| Georg Brandl | ab756f6 | 2008-05-11 11:09:35 +0000 | [diff] [blame] | 42 | method call ``connect(host)`` is made.  When *user* is given, additionally | 
|  | 43 | the method call ``login(user, passwd, acct)`` is made (where *passwd* and | 
|  | 44 | *acct* default to the empty string when not given).  The optional *timeout* | 
|  | 45 | parameter specifies a timeout in seconds for blocking operations like the | 
| Facundo Batista | 4f1b1ed | 2008-05-29 16:39:26 +0000 | [diff] [blame] | 46 | connection attempt (if is not specified, the global default timeout setting | 
|  | 47 | will be used). | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 48 |  | 
|  | 49 | .. versionchanged:: 2.6 | 
|  | 50 | *timeout* was added. | 
|  | 51 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 52 |  | 
| Antoine Pitrou | ccd5e02 | 2009-11-15 17:22:09 +0000 | [diff] [blame] | 53 | .. class:: FTP_TLS([host[, user[, passwd[, acct[, keyfile[, certfile[, timeout]]]]]]]) | 
|  | 54 |  | 
|  | 55 | A :class:`FTP` subclass which adds TLS support to FTP as described in | 
|  | 56 | :rfc:`4217`. | 
|  | 57 | Connect as usual to port 21 implicitly securing the FTP control connection | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 58 | before authenticating. Securing the data connection requires the user to | 
|  | 59 | explicitly ask for it by calling the :meth:`prot_p` method. | 
|  | 60 | *keyfile* and *certfile* are optional -- they can contain a PEM formatted | 
|  | 61 | private key and certificate chain file name for the SSL connection. | 
| Antoine Pitrou | ccd5e02 | 2009-11-15 17:22:09 +0000 | [diff] [blame] | 62 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 63 | .. versionadded:: 2.7 | 
| Antoine Pitrou | ccd5e02 | 2009-11-15 17:22:09 +0000 | [diff] [blame] | 64 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 65 | Here's a sample session using the :class:`FTP_TLS` class: | 
| Antoine Pitrou | ccd5e02 | 2009-11-15 17:22:09 +0000 | [diff] [blame] | 66 |  | 
|  | 67 | >>> from ftplib import FTP_TLS | 
|  | 68 | >>> ftps = FTP_TLS('ftp.python.org') | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 69 | >>> ftps.login()           # login anonymously before securing control channel | 
|  | 70 | >>> ftps.prot_p()          # switch to secure data connection | 
|  | 71 | >>> ftps.retrlines('LIST') # list directory content securely | 
| Antoine Pitrou | ccd5e02 | 2009-11-15 17:22:09 +0000 | [diff] [blame] | 72 | total 9 | 
|  | 73 | drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 . | 
|  | 74 | drwxr-xr-x   8 root     wheel        1024 Jan  3  1994 .. | 
|  | 75 | drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 bin | 
|  | 76 | drwxr-xr-x   2 root     wheel        1024 Jan  3  1994 etc | 
|  | 77 | d-wxrwxr-x   2 ftp      wheel        1024 Sep  5 13:43 incoming | 
|  | 78 | drwxr-xr-x   2 root     wheel        1024 Nov 17  1993 lib | 
|  | 79 | drwxr-xr-x   6 1094     wheel        1024 Sep 13 19:07 pub | 
|  | 80 | drwxr-xr-x   3 root     wheel        1024 Jan  3  1994 usr | 
|  | 81 | -rw-r--r--   1 root     root          312 Aug  1  1994 welcome.msg | 
|  | 82 | '226 Transfer complete.' | 
|  | 83 | >>> ftps.quit() | 
|  | 84 | >>> | 
|  | 85 |  | 
|  | 86 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 87 | .. exception:: error_reply | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 88 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 89 | Exception raised when an unexpected reply is received from the server. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 90 |  | 
|  | 91 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 92 | .. exception:: error_temp | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 93 |  | 
| Georg Brandl | 26946ec | 2010-11-26 07:42:15 +0000 | [diff] [blame] | 94 | Exception raised when an error code signifying a temporary error (response | 
|  | 95 | codes in the range 400--499) is received. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 96 |  | 
|  | 97 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 98 | .. exception:: error_perm | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 99 |  | 
| Georg Brandl | 26946ec | 2010-11-26 07:42:15 +0000 | [diff] [blame] | 100 | Exception raised when an error code signifying a permanent error (response | 
|  | 101 | codes in the range 500--599) is received. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 102 |  | 
|  | 103 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 104 | .. exception:: error_proto | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 105 |  | 
| Georg Brandl | 26946ec | 2010-11-26 07:42:15 +0000 | [diff] [blame] | 106 | Exception raised when a reply is received from the server that does not fit | 
|  | 107 | the response specifications of the File Transfer Protocol, i.e. begin with a | 
|  | 108 | digit in the range 1--5. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 109 |  | 
|  | 110 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 111 | .. data:: all_errors | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 112 |  | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 113 | The set of all exceptions (as a tuple) that methods of :class:`FTP` | 
|  | 114 | instances may raise as a result of problems with the FTP connection (as | 
|  | 115 | opposed to programming errors made by the caller).  This set includes the | 
| Georg Brandl | 0ddc30b | 2010-05-10 21:46:50 +0000 | [diff] [blame] | 116 | four exceptions listed above as well as :exc:`socket.error` and | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 117 | :exc:`IOError`. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 118 |  | 
|  | 119 |  | 
|  | 120 | .. seealso:: | 
|  | 121 |  | 
|  | 122 | Module :mod:`netrc` | 
| Georg Brandl | 979d79c | 2010-01-31 18:51:49 +0000 | [diff] [blame] | 123 | Parser for the :file:`.netrc` file format.  The file :file:`.netrc` is | 
|  | 124 | typically used by FTP clients to load user authentication information | 
|  | 125 | before prompting the user. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 126 |  | 
|  | 127 | .. index:: single: ftpmirror.py | 
|  | 128 |  | 
|  | 129 | The file :file:`Tools/scripts/ftpmirror.py` in the Python source distribution is | 
|  | 130 | a script that can mirror FTP sites, or portions thereof, using the :mod:`ftplib` | 
|  | 131 | module. It can be used as an extended example that applies this module. | 
|  | 132 |  | 
|  | 133 |  | 
|  | 134 | .. _ftp-objects: | 
|  | 135 |  | 
|  | 136 | FTP Objects | 
|  | 137 | ----------- | 
|  | 138 |  | 
|  | 139 | Several methods are available in two flavors: one for handling text files and | 
|  | 140 | another for binary files.  These are named for the command which is used | 
|  | 141 | followed by ``lines`` for the text version or ``binary`` for the binary version. | 
|  | 142 |  | 
|  | 143 | :class:`FTP` instances have the following methods: | 
|  | 144 |  | 
|  | 145 |  | 
|  | 146 | .. method:: FTP.set_debuglevel(level) | 
|  | 147 |  | 
|  | 148 | Set the instance's debugging level.  This controls the amount of debugging | 
|  | 149 | output printed.  The default, ``0``, produces no debugging output.  A value of | 
|  | 150 | ``1`` produces a moderate amount of debugging output, generally a single line | 
|  | 151 | per request.  A value of ``2`` or higher produces the maximum amount of | 
|  | 152 | debugging output, logging each line sent and received on the control connection. | 
|  | 153 |  | 
|  | 154 |  | 
|  | 155 | .. method:: FTP.connect(host[, port[, timeout]]) | 
|  | 156 |  | 
|  | 157 | Connect to the given host and port.  The default port number is ``21``, as | 
|  | 158 | specified by the FTP protocol specification.  It is rarely needed to specify a | 
|  | 159 | different port number.  This function should be called only once for each | 
|  | 160 | instance; it should not be called at all if a host was given when the instance | 
|  | 161 | was created.  All other methods can only be used after a connection has been | 
|  | 162 | made. | 
|  | 163 |  | 
|  | 164 | The optional *timeout* parameter specifies a timeout in seconds for the | 
| Facundo Batista | 4f1b1ed | 2008-05-29 16:39:26 +0000 | [diff] [blame] | 165 | connection attempt. If no *timeout* is passed, the global default timeout | 
|  | 166 | setting will be used. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 167 |  | 
|  | 168 | .. versionchanged:: 2.6 | 
|  | 169 | *timeout* was added. | 
|  | 170 |  | 
|  | 171 |  | 
|  | 172 | .. method:: FTP.getwelcome() | 
|  | 173 |  | 
|  | 174 | Return the welcome message sent by the server in reply to the initial | 
|  | 175 | connection.  (This message sometimes contains disclaimers or help information | 
|  | 176 | that may be relevant to the user.) | 
|  | 177 |  | 
|  | 178 |  | 
|  | 179 | .. method:: FTP.login([user[, passwd[, acct]]]) | 
|  | 180 |  | 
|  | 181 | Log in as the given *user*.  The *passwd* and *acct* parameters are optional and | 
|  | 182 | default to the empty string.  If no *user* is specified, it defaults to | 
|  | 183 | ``'anonymous'``.  If *user* is ``'anonymous'``, the default *passwd* is | 
|  | 184 | ``'anonymous@'``.  This function should be called only once for each instance, | 
|  | 185 | after a connection has been established; it should not be called at all if a | 
|  | 186 | host and user were given when the instance was created.  Most FTP commands are | 
| Georg Brandl | 601ee7f | 2009-09-04 11:25:37 +0000 | [diff] [blame] | 187 | only allowed after the client has logged in.  The *acct* parameter supplies | 
|  | 188 | "accounting information"; few systems implement this. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 189 |  | 
|  | 190 |  | 
|  | 191 | .. method:: FTP.abort() | 
|  | 192 |  | 
|  | 193 | Abort a file transfer that is in progress.  Using this does not always work, but | 
|  | 194 | it's worth a try. | 
|  | 195 |  | 
|  | 196 |  | 
|  | 197 | .. method:: FTP.sendcmd(command) | 
|  | 198 |  | 
|  | 199 | Send a simple command string to the server and return the response string. | 
|  | 200 |  | 
|  | 201 |  | 
|  | 202 | .. method:: FTP.voidcmd(command) | 
|  | 203 |  | 
| Georg Brandl | 26946ec | 2010-11-26 07:42:15 +0000 | [diff] [blame] | 204 | Send a simple command string to the server and handle the response.  Return | 
|  | 205 | nothing if a response code corresponding to success (codes in the range | 
|  | 206 | 200--299) is received.  Raise :exc:`error_reply` otherwise. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 207 |  | 
|  | 208 |  | 
|  | 209 | .. method:: FTP.retrbinary(command, callback[, maxblocksize[, rest]]) | 
|  | 210 |  | 
|  | 211 | Retrieve a file in binary transfer mode.  *command* should be an appropriate | 
|  | 212 | ``RETR`` command: ``'RETR filename'``. The *callback* function is called for | 
|  | 213 | each block of data received, with a single string argument giving the data | 
|  | 214 | block. The optional *maxblocksize* argument specifies the maximum chunk size to | 
|  | 215 | read on the low-level socket object created to do the actual transfer (which | 
|  | 216 | will also be the largest size of the data blocks passed to *callback*).  A | 
|  | 217 | reasonable default is chosen. *rest* means the same thing as in the | 
|  | 218 | :meth:`transfercmd` method. | 
|  | 219 |  | 
|  | 220 |  | 
|  | 221 | .. method:: FTP.retrlines(command[, callback]) | 
|  | 222 |  | 
| Gregory P. Smith | d006380 | 2008-01-26 18:51:05 +0000 | [diff] [blame] | 223 | Retrieve a file or directory listing in ASCII transfer mode.  *command* | 
|  | 224 | should be an appropriate ``RETR`` command (see :meth:`retrbinary`) or a | 
|  | 225 | command such as ``LIST``, ``NLST`` or ``MLSD`` (usually just the string | 
| Georg Brandl | 26946ec | 2010-11-26 07:42:15 +0000 | [diff] [blame] | 226 | ``'LIST'``).  ``LIST`` retrieves a list of files and information about those files. | 
|  | 227 | ``NLST`` retrieves a list of file names.  On some servers, ``MLSD`` retrieves | 
|  | 228 | a machine readable list of files and information about those files.  The *callback* | 
|  | 229 | function is called for each line with a string argument containing the line with | 
|  | 230 | the trailing CRLF stripped.  The default *callback* prints the line to ``sys.stdout``. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 231 |  | 
|  | 232 |  | 
|  | 233 | .. method:: FTP.set_pasv(boolean) | 
|  | 234 |  | 
|  | 235 | Enable "passive" mode if *boolean* is true, other disable passive mode.  (In | 
|  | 236 | Python 2.0 and before, passive mode was off by default; in Python 2.1 and later, | 
|  | 237 | it is on by default.) | 
|  | 238 |  | 
|  | 239 |  | 
| Antoine Pitrou | acbe3bd | 2009-11-27 13:18:34 +0000 | [diff] [blame] | 240 | .. method:: FTP.storbinary(command, file[, blocksize, callback, rest]) | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 241 |  | 
|  | 242 | Store a file in binary transfer mode.  *command* should be an appropriate | 
|  | 243 | ``STOR`` command: ``"STOR filename"``. *file* is an open file object which is | 
|  | 244 | read until EOF using its :meth:`read` method in blocks of size *blocksize* to | 
|  | 245 | provide the data to be stored.  The *blocksize* argument defaults to 8192. | 
| Gregory P. Smith | d006380 | 2008-01-26 18:51:05 +0000 | [diff] [blame] | 246 | *callback* is an optional single parameter callable that is called | 
| Antoine Pitrou | acbe3bd | 2009-11-27 13:18:34 +0000 | [diff] [blame] | 247 | on each block of data after it is sent. *rest* means the same thing as in | 
|  | 248 | the :meth:`transfercmd` method. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 249 |  | 
|  | 250 | .. versionchanged:: 2.1 | 
|  | 251 | default for *blocksize* added. | 
|  | 252 |  | 
| Gregory P. Smith | d006380 | 2008-01-26 18:51:05 +0000 | [diff] [blame] | 253 | .. versionchanged:: 2.6 | 
|  | 254 | *callback* parameter added. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 255 |  | 
| Antoine Pitrou | acbe3bd | 2009-11-27 13:18:34 +0000 | [diff] [blame] | 256 | .. versionchanged:: 2.7 | 
|  | 257 | *rest* parameter added. | 
| Gregory P. Smith | d006380 | 2008-01-26 18:51:05 +0000 | [diff] [blame] | 258 |  | 
|  | 259 | .. method:: FTP.storlines(command, file[, callback]) | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 260 |  | 
|  | 261 | Store a file in ASCII transfer mode.  *command* should be an appropriate | 
|  | 262 | ``STOR`` command (see :meth:`storbinary`).  Lines are read until EOF from the | 
|  | 263 | open file object *file* using its :meth:`readline` method to provide the data to | 
| Gregory P. Smith | d006380 | 2008-01-26 18:51:05 +0000 | [diff] [blame] | 264 | be stored.  *callback* is an optional single parameter callable | 
|  | 265 | that is called on each line after it is sent. | 
|  | 266 |  | 
|  | 267 | .. versionchanged:: 2.6 | 
|  | 268 | *callback* parameter added. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 269 |  | 
|  | 270 |  | 
|  | 271 | .. method:: FTP.transfercmd(cmd[, rest]) | 
|  | 272 |  | 
|  | 273 | Initiate a transfer over the data connection.  If the transfer is active, send a | 
|  | 274 | ``EPRT`` or  ``PORT`` command and the transfer command specified by *cmd*, and | 
|  | 275 | accept the connection.  If the server is passive, send a ``EPSV`` or ``PASV`` | 
|  | 276 | command, connect to it, and start the transfer command.  Either way, return the | 
|  | 277 | socket for the connection. | 
|  | 278 |  | 
|  | 279 | If optional *rest* is given, a ``REST`` command is sent to the server, passing | 
|  | 280 | *rest* as an argument.  *rest* is usually a byte offset into the requested file, | 
|  | 281 | telling the server to restart sending the file's bytes at the requested offset, | 
|  | 282 | skipping over the initial bytes.  Note however that RFC 959 requires only that | 
|  | 283 | *rest* be a string containing characters in the printable range from ASCII code | 
|  | 284 | 33 to ASCII code 126.  The :meth:`transfercmd` method, therefore, converts | 
|  | 285 | *rest* to a string, but no check is performed on the string's contents.  If the | 
|  | 286 | server does not recognize the ``REST`` command, an :exc:`error_reply` exception | 
|  | 287 | will be raised.  If this happens, simply call :meth:`transfercmd` without a | 
|  | 288 | *rest* argument. | 
|  | 289 |  | 
|  | 290 |  | 
|  | 291 | .. method:: FTP.ntransfercmd(cmd[, rest]) | 
|  | 292 |  | 
|  | 293 | Like :meth:`transfercmd`, but returns a tuple of the data connection and the | 
|  | 294 | expected size of the data.  If the expected size could not be computed, ``None`` | 
|  | 295 | will be returned as the expected size.  *cmd* and *rest* means the same thing as | 
|  | 296 | in :meth:`transfercmd`. | 
|  | 297 |  | 
|  | 298 |  | 
|  | 299 | .. method:: FTP.nlst(argument[, ...]) | 
|  | 300 |  | 
| Georg Brandl | 26946ec | 2010-11-26 07:42:15 +0000 | [diff] [blame] | 301 | Return a list of file names as returned by the ``NLST`` command.  The | 
|  | 302 | optional *argument* is a directory to list (default is the current server | 
|  | 303 | directory).  Multiple arguments can be used to pass non-standard options to | 
|  | 304 | the ``NLST`` command. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 305 |  | 
|  | 306 |  | 
|  | 307 | .. method:: FTP.dir(argument[, ...]) | 
|  | 308 |  | 
|  | 309 | Produce a directory listing as returned by the ``LIST`` command, printing it to | 
|  | 310 | standard output.  The optional *argument* is a directory to list (default is the | 
|  | 311 | current server directory).  Multiple arguments can be used to pass non-standard | 
|  | 312 | options to the ``LIST`` command.  If the last argument is a function, it is used | 
|  | 313 | as a *callback* function as for :meth:`retrlines`; the default prints to | 
|  | 314 | ``sys.stdout``.  This method returns ``None``. | 
|  | 315 |  | 
|  | 316 |  | 
|  | 317 | .. method:: FTP.rename(fromname, toname) | 
|  | 318 |  | 
|  | 319 | Rename file *fromname* on the server to *toname*. | 
|  | 320 |  | 
|  | 321 |  | 
|  | 322 | .. method:: FTP.delete(filename) | 
|  | 323 |  | 
|  | 324 | Remove the file named *filename* from the server.  If successful, returns the | 
|  | 325 | text of the response, otherwise raises :exc:`error_perm` on permission errors or | 
|  | 326 | :exc:`error_reply` on other errors. | 
|  | 327 |  | 
|  | 328 |  | 
|  | 329 | .. method:: FTP.cwd(pathname) | 
|  | 330 |  | 
|  | 331 | Set the current directory on the server. | 
|  | 332 |  | 
|  | 333 |  | 
|  | 334 | .. method:: FTP.mkd(pathname) | 
|  | 335 |  | 
|  | 336 | Create a new directory on the server. | 
|  | 337 |  | 
|  | 338 |  | 
|  | 339 | .. method:: FTP.pwd() | 
|  | 340 |  | 
|  | 341 | Return the pathname of the current directory on the server. | 
|  | 342 |  | 
|  | 343 |  | 
|  | 344 | .. method:: FTP.rmd(dirname) | 
|  | 345 |  | 
|  | 346 | Remove the directory named *dirname* on the server. | 
|  | 347 |  | 
|  | 348 |  | 
|  | 349 | .. method:: FTP.size(filename) | 
|  | 350 |  | 
|  | 351 | Request the size of the file named *filename* on the server.  On success, the | 
|  | 352 | size of the file is returned as an integer, otherwise ``None`` is returned. | 
|  | 353 | Note that the ``SIZE`` command is not  standardized, but is supported by many | 
|  | 354 | common server implementations. | 
|  | 355 |  | 
|  | 356 |  | 
|  | 357 | .. method:: FTP.quit() | 
|  | 358 |  | 
|  | 359 | Send a ``QUIT`` command to the server and close the connection. This is the | 
| Benjamin Peterson | f9db596 | 2008-10-04 22:15:31 +0000 | [diff] [blame] | 360 | "polite" way to close a connection, but it may raise an exception if the server | 
| Benjamin Peterson | 90f3673 | 2008-07-12 20:16:19 +0000 | [diff] [blame] | 361 | responds with an error to the ``QUIT`` command.  This implies a call to the | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 362 | :meth:`close` method which renders the :class:`FTP` instance useless for | 
|  | 363 | subsequent calls (see below). | 
|  | 364 |  | 
|  | 365 |  | 
|  | 366 | .. method:: FTP.close() | 
|  | 367 |  | 
|  | 368 | Close the connection unilaterally.  This should not be applied to an already | 
|  | 369 | closed connection such as after a successful call to :meth:`quit`.  After this | 
|  | 370 | call the :class:`FTP` instance should not be used any more (after a call to | 
|  | 371 | :meth:`close` or :meth:`quit` you cannot reopen the connection by issuing | 
|  | 372 | another :meth:`login` method). | 
|  | 373 |  | 
| Antoine Pitrou | ccd5e02 | 2009-11-15 17:22:09 +0000 | [diff] [blame] | 374 |  | 
|  | 375 | FTP_TLS Objects | 
|  | 376 | --------------- | 
|  | 377 |  | 
|  | 378 | :class:`FTP_TLS` class inherits from :class:`FTP`, defining these additional objects: | 
|  | 379 |  | 
|  | 380 | .. attribute:: FTP_TLS.ssl_version | 
|  | 381 |  | 
|  | 382 | The SSL version to use (defaults to *TLSv1*). | 
|  | 383 |  | 
|  | 384 | .. method:: FTP_TLS.auth() | 
|  | 385 |  | 
|  | 386 | Set up secure control connection by using TLS or SSL, depending on what specified in :meth:`ssl_version` attribute. | 
|  | 387 |  | 
|  | 388 | .. method:: FTP_TLS.prot_p() | 
|  | 389 |  | 
|  | 390 | Set up secure data connection. | 
|  | 391 |  | 
|  | 392 | .. method:: FTP_TLS.prot_c() | 
|  | 393 |  | 
|  | 394 | Set up clear text data connection. | 
|  | 395 |  | 
|  | 396 |  |