blob: 99aae0d22f6d361ff7fe951b0582c0efe3bc881c [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`ftplib` --- FTP protocol client
3=====================================
4
5.. module:: ftplib
6 :synopsis: FTP protocol client (requires sockets).
7
8
9.. index::
10 pair: FTP; protocol
11 single: FTP; ftplib (standard module)
12
13This module defines the class :class:`FTP` and a few related items. The
14:class:`FTP` class implements the client side of the FTP protocol. You can use
15this to write Python programs that perform a variety of automated FTP jobs, such
16as mirroring other ftp servers. It is also used by the module :mod:`urllib` to
17handle URLs that use FTP. For more information on FTP (File Transfer Protocol),
18see Internet :rfc:`959`.
19
20Here's a sample session using the :mod:`ftplib` module::
21
22 >>> from ftplib import FTP
23 >>> ftp = FTP('ftp.cwi.nl') # connect to host, default port
24 >>> ftp.login() # user anonymous, passwd anonymous@
25 >>> ftp.retrlines('LIST') # list directory contents
26 total 24418
27 drwxrwsr-x 5 ftp-usr pdmaint 1536 Mar 20 09:48 .
28 dr-xr-srwt 105 ftp-usr pdmaint 1536 Mar 21 14:32 ..
29 -rw-r--r-- 1 ftp-usr pdmaint 5305 Mar 20 09:48 INDEX
30 .
31 .
32 .
33 >>> ftp.retrbinary('RETR README', open('README', 'wb').write)
34 '226 Transfer complete.'
35 >>> ftp.quit()
36
37The module defines the following items:
38
39
40.. class:: FTP([host[, user[, passwd[, acct[, timeout]]]]])
41
42 Return a new instance of the :class:`FTP` class. When *host* is given, the
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +000043 method call ``connect(host)`` is made. When *user* is given, additionally
44 the method call ``login(user, passwd, acct)`` is made (where *passwd* and
45 *acct* default to the empty string when not given). The optional *timeout*
46 parameter specifies a timeout in seconds for blocking operations like the
47 connection attempt (if is not specified, or passed as None, the global
48 default timeout setting will be used).
Georg Brandl116aa622007-08-15 14:28:22 +000049
Georg Brandl116aa622007-08-15 14:28:22 +000050
Benjamin Petersone41251e2008-04-25 01:59:09 +000051 .. attribute:: all_errors
Georg Brandl116aa622007-08-15 14:28:22 +000052
Benjamin Petersone41251e2008-04-25 01:59:09 +000053 The set of all exceptions (as a tuple) that methods of :class:`FTP`
54 instances may raise as a result of problems with the FTP connection (as
55 opposed to programming errors made by the caller). This set includes the
56 four exceptions listed below as well as :exc:`socket.error` and
57 :exc:`IOError`.
Georg Brandl116aa622007-08-15 14:28:22 +000058
59
Benjamin Petersone41251e2008-04-25 01:59:09 +000060 .. exception:: error_reply
Georg Brandl116aa622007-08-15 14:28:22 +000061
Benjamin Petersone41251e2008-04-25 01:59:09 +000062 Exception raised when an unexpected reply is received from the server.
Georg Brandl116aa622007-08-15 14:28:22 +000063
64
Benjamin Petersone41251e2008-04-25 01:59:09 +000065 .. exception:: error_temp
Georg Brandl116aa622007-08-15 14:28:22 +000066
Benjamin Petersone41251e2008-04-25 01:59:09 +000067 Exception raised when an error code in the range 400--499 is received.
Georg Brandl116aa622007-08-15 14:28:22 +000068
69
Benjamin Petersone41251e2008-04-25 01:59:09 +000070 .. exception:: error_perm
Georg Brandl116aa622007-08-15 14:28:22 +000071
Benjamin Petersone41251e2008-04-25 01:59:09 +000072 Exception raised when an error code in the range 500--599 is received.
Georg Brandl116aa622007-08-15 14:28:22 +000073
74
Benjamin Petersone41251e2008-04-25 01:59:09 +000075 .. exception:: error_proto
Georg Brandl116aa622007-08-15 14:28:22 +000076
Benjamin Petersone41251e2008-04-25 01:59:09 +000077 Exception raised when a reply is received from the server that does not
78 begin with a digit in the range 1--5.
Georg Brandl116aa622007-08-15 14:28:22 +000079
80
81.. seealso::
82
83 Module :mod:`netrc`
84 Parser for the :file:`.netrc` file format. The file :file:`.netrc` is typically
85 used by FTP clients to load user authentication information before prompting the
86 user.
87
88 .. index:: single: ftpmirror.py
89
90 The file :file:`Tools/scripts/ftpmirror.py` in the Python source distribution is
91 a script that can mirror FTP sites, or portions thereof, using the :mod:`ftplib`
92 module. It can be used as an extended example that applies this module.
93
94
95.. _ftp-objects:
96
97FTP Objects
98-----------
99
100Several methods are available in two flavors: one for handling text files and
101another for binary files. These are named for the command which is used
102followed by ``lines`` for the text version or ``binary`` for the binary version.
103
104:class:`FTP` instances have the following methods:
105
106
107.. method:: FTP.set_debuglevel(level)
108
109 Set the instance's debugging level. This controls the amount of debugging
110 output printed. The default, ``0``, produces no debugging output. A value of
111 ``1`` produces a moderate amount of debugging output, generally a single line
112 per request. A value of ``2`` or higher produces the maximum amount of
113 debugging output, logging each line sent and received on the control connection.
114
115
116.. method:: FTP.connect(host[, port[, timeout]])
117
118 Connect to the given host and port. The default port number is ``21``, as
119 specified by the FTP protocol specification. It is rarely needed to specify a
120 different port number. This function should be called only once for each
121 instance; it should not be called at all if a host was given when the instance
122 was created. All other methods can only be used after a connection has been
123 made.
124
125 The optional *timeout* parameter specifies a timeout in seconds for the
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +0000126 connection attempt. If is not specified, or passed as None, the object
127 timeout is used (the timeout that you passed when instantiating the class);
128 if the object timeout is also None, the global default timeout setting will
129 be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000130
Georg Brandl116aa622007-08-15 14:28:22 +0000131
132.. method:: FTP.getwelcome()
133
134 Return the welcome message sent by the server in reply to the initial
135 connection. (This message sometimes contains disclaimers or help information
136 that may be relevant to the user.)
137
138
139.. method:: FTP.login([user[, passwd[, acct]]])
140
141 Log in as the given *user*. The *passwd* and *acct* parameters are optional and
142 default to the empty string. If no *user* is specified, it defaults to
143 ``'anonymous'``. If *user* is ``'anonymous'``, the default *passwd* is
144 ``'anonymous@'``. This function should be called only once for each instance,
145 after a connection has been established; it should not be called at all if a
146 host and user were given when the instance was created. Most FTP commands are
147 only allowed after the client has logged in.
148
149
150.. method:: FTP.abort()
151
152 Abort a file transfer that is in progress. Using this does not always work, but
153 it's worth a try.
154
155
156.. method:: FTP.sendcmd(command)
157
158 Send a simple command string to the server and return the response string.
159
160
161.. method:: FTP.voidcmd(command)
162
163 Send a simple command string to the server and handle the response. Return
164 nothing if a response code in the range 200--299 is received. Raise an exception
165 otherwise.
166
167
168.. method:: FTP.retrbinary(command, callback[, maxblocksize[, rest]])
169
170 Retrieve a file in binary transfer mode. *command* should be an appropriate
171 ``RETR`` command: ``'RETR filename'``. The *callback* function is called for
172 each block of data received, with a single string argument giving the data
173 block. The optional *maxblocksize* argument specifies the maximum chunk size to
174 read on the low-level socket object created to do the actual transfer (which
175 will also be the largest size of the data blocks passed to *callback*). A
176 reasonable default is chosen. *rest* means the same thing as in the
177 :meth:`transfercmd` method.
178
179
180.. method:: FTP.retrlines(command[, callback])
181
Christian Heimesaf98da12008-01-27 15:18:18 +0000182 Retrieve a file or directory listing in ASCII transfer mode. *command*
183 should be an appropriate ``RETR`` command (see :meth:`retrbinary`) or a
184 command such as ``LIST``, ``NLST`` or ``MLSD`` (usually just the string
185 ``'LIST'``). The *callback* function is called for each line, with the
186 trailing CRLF stripped. The default *callback* prints the line to
187 ``sys.stdout``.
Georg Brandl116aa622007-08-15 14:28:22 +0000188
189
190.. method:: FTP.set_pasv(boolean)
191
Georg Brandle6bcc912008-05-12 18:05:20 +0000192 Enable "passive" mode if *boolean* is true, other disable passive mode.
193 Passive mode is on by default.
Georg Brandl116aa622007-08-15 14:28:22 +0000194
195
Christian Heimesaf98da12008-01-27 15:18:18 +0000196.. method:: FTP.storbinary(command, file[, blocksize, callback])
Georg Brandl116aa622007-08-15 14:28:22 +0000197
198 Store a file in binary transfer mode. *command* should be an appropriate
199 ``STOR`` command: ``"STOR filename"``. *file* is an open file object which is
200 read until EOF using its :meth:`read` method in blocks of size *blocksize* to
201 provide the data to be stored. The *blocksize* argument defaults to 8192.
Christian Heimesaf98da12008-01-27 15:18:18 +0000202 *callback* is an optional single parameter callable that is called
203 on each block of data after it is sent.
Georg Brandl116aa622007-08-15 14:28:22 +0000204
Georg Brandl116aa622007-08-15 14:28:22 +0000205
Christian Heimesaf98da12008-01-27 15:18:18 +0000206.. method:: FTP.storlines(command, file[, callback])
Georg Brandl116aa622007-08-15 14:28:22 +0000207
208 Store a file in ASCII transfer mode. *command* should be an appropriate
209 ``STOR`` command (see :meth:`storbinary`). Lines are read until EOF from the
210 open file object *file* using its :meth:`readline` method to provide the data to
Christian Heimesaf98da12008-01-27 15:18:18 +0000211 be stored. *callback* is an optional single parameter callable
212 that is called on each line after it is sent.
Georg Brandl116aa622007-08-15 14:28:22 +0000213
214
215.. method:: FTP.transfercmd(cmd[, rest])
216
217 Initiate a transfer over the data connection. If the transfer is active, send a
218 ``EPRT`` or ``PORT`` command and the transfer command specified by *cmd*, and
219 accept the connection. If the server is passive, send a ``EPSV`` or ``PASV``
220 command, connect to it, and start the transfer command. Either way, return the
221 socket for the connection.
222
223 If optional *rest* is given, a ``REST`` command is sent to the server, passing
224 *rest* as an argument. *rest* is usually a byte offset into the requested file,
225 telling the server to restart sending the file's bytes at the requested offset,
226 skipping over the initial bytes. Note however that RFC 959 requires only that
227 *rest* be a string containing characters in the printable range from ASCII code
228 33 to ASCII code 126. The :meth:`transfercmd` method, therefore, converts
229 *rest* to a string, but no check is performed on the string's contents. If the
230 server does not recognize the ``REST`` command, an :exc:`error_reply` exception
231 will be raised. If this happens, simply call :meth:`transfercmd` without a
232 *rest* argument.
233
234
235.. method:: FTP.ntransfercmd(cmd[, rest])
236
237 Like :meth:`transfercmd`, but returns a tuple of the data connection and the
238 expected size of the data. If the expected size could not be computed, ``None``
239 will be returned as the expected size. *cmd* and *rest* means the same thing as
240 in :meth:`transfercmd`.
241
242
243.. method:: FTP.nlst(argument[, ...])
244
245 Return a list of files as returned by the ``NLST`` command. The optional
246 *argument* is a directory to list (default is the current server directory).
247 Multiple arguments can be used to pass non-standard options to the ``NLST``
248 command.
249
250
251.. method:: FTP.dir(argument[, ...])
252
253 Produce a directory listing as returned by the ``LIST`` command, printing it to
254 standard output. The optional *argument* is a directory to list (default is the
255 current server directory). Multiple arguments can be used to pass non-standard
256 options to the ``LIST`` command. If the last argument is a function, it is used
257 as a *callback* function as for :meth:`retrlines`; the default prints to
258 ``sys.stdout``. This method returns ``None``.
259
260
261.. method:: FTP.rename(fromname, toname)
262
263 Rename file *fromname* on the server to *toname*.
264
265
266.. method:: FTP.delete(filename)
267
268 Remove the file named *filename* from the server. If successful, returns the
269 text of the response, otherwise raises :exc:`error_perm` on permission errors or
270 :exc:`error_reply` on other errors.
271
272
273.. method:: FTP.cwd(pathname)
274
275 Set the current directory on the server.
276
277
278.. method:: FTP.mkd(pathname)
279
280 Create a new directory on the server.
281
282
283.. method:: FTP.pwd()
284
285 Return the pathname of the current directory on the server.
286
287
288.. method:: FTP.rmd(dirname)
289
290 Remove the directory named *dirname* on the server.
291
292
293.. method:: FTP.size(filename)
294
295 Request the size of the file named *filename* on the server. On success, the
296 size of the file is returned as an integer, otherwise ``None`` is returned.
297 Note that the ``SIZE`` command is not standardized, but is supported by many
298 common server implementations.
299
300
301.. method:: FTP.quit()
302
303 Send a ``QUIT`` command to the server and close the connection. This is the
304 "polite" way to close a connection, but it may raise an exception of the server
305 reponds with an error to the ``QUIT`` command. This implies a call to the
306 :meth:`close` method which renders the :class:`FTP` instance useless for
307 subsequent calls (see below).
308
309
310.. method:: FTP.close()
311
312 Close the connection unilaterally. This should not be applied to an already
313 closed connection such as after a successful call to :meth:`quit`. After this
314 call the :class:`FTP` instance should not be used any more (after a call to
315 :meth:`close` or :meth:`quit` you cannot reopen the connection by issuing
316 another :meth:`login` method).
317