blob: cef96a4648ff3b95843b9a8d37bb1334da3d35f8 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001:mod:`urllib2` --- extensible library for opening URLs
2======================================================
3
4.. module:: urllib2
5 :synopsis: Next generation URL opening library.
6.. moduleauthor:: Jeremy Hylton <jhylton@users.sourceforge.net>
7.. sectionauthor:: Moshe Zadka <moshez@users.sourceforge.net>
8
9
Brett Cannon97aa1ae2008-07-11 00:12:52 +000010.. note::
11 The :mod:`urllib2` module has been split across several modules in
12 Python 3.0 named :mod:`urllib.request` and :mod:`urllib.error`.
13 The :term:`2to3` tool will automatically adapt imports when converting
14 your sources to 3.0.
15
16
Georg Brandl8ec7f652007-08-15 14:28:01 +000017The :mod:`urllib2` module defines functions and classes which help in opening
18URLs (mostly HTTP) in a complex world --- basic and digest authentication,
19redirections, cookies and more.
20
Antoine Pitrou66bfda82010-09-29 11:30:52 +000021
Georg Brandl8ec7f652007-08-15 14:28:01 +000022The :mod:`urllib2` module defines the following functions:
23
24
25.. function:: urlopen(url[, data][, timeout])
26
27 Open the URL *url*, which can be either a string or a :class:`Request` object.
28
Senthil Kumaran30630b92010-10-05 18:45:00 +000029 .. warning::
30 HTTPS requests do not do any verification of the server's certificate.
31
Georg Brandl8ec7f652007-08-15 14:28:01 +000032 *data* may be a string specifying additional data to send to the server, or
33 ``None`` if no such data is needed. Currently HTTP requests are the only ones
34 that use *data*; the HTTP request will be a POST instead of a GET when the
35 *data* parameter is provided. *data* should be a buffer in the standard
36 :mimetype:`application/x-www-form-urlencoded` format. The
37 :func:`urllib.urlencode` function takes a mapping or sequence of 2-tuples and
Senthil Kumaranb7575ee2010-08-21 16:14:54 +000038 returns a string in this format. urllib2 module sends HTTP/1.1 requests with
39 `Connection:close` header included.
Georg Brandl8ec7f652007-08-15 14:28:01 +000040
Georg Brandlab756f62008-05-11 11:09:35 +000041 The optional *timeout* parameter specifies a timeout in seconds for blocking
Facundo Batista4f1b1ed2008-05-29 16:39:26 +000042 operations like the connection attempt (if not specified, the global default
Senthil Kumaran30630b92010-10-05 18:45:00 +000043 timeout setting will be used). This actually only works for HTTP, HTTPS and
44 FTP connections.
Georg Brandl8ec7f652007-08-15 14:28:01 +000045
46 This function returns a file-like object with two additional methods:
47
Georg Brandl586a57a2008-02-02 09:56:20 +000048 * :meth:`geturl` --- return the URL of the resource retrieved, commonly used to
49 determine if a redirect was followed
Georg Brandl8ec7f652007-08-15 14:28:01 +000050
Senthil Kumaran8c996ef2010-06-28 17:07:40 +000051 * :meth:`info` --- return the meta-information of the page, such as headers,
52 in the form of an :class:`mimetools.Message` instance
Georg Brandl586a57a2008-02-02 09:56:20 +000053 (see `Quick Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
Georg Brandl8ec7f652007-08-15 14:28:01 +000054
55 Raises :exc:`URLError` on errors.
56
57 Note that ``None`` may be returned if no handler handles the request (though the
58 default installed global :class:`OpenerDirector` uses :class:`UnknownHandler` to
59 ensure this never happens).
60
Senthil Kumaran45a505f2009-10-18 01:24:41 +000061 In addition, default installed :class:`ProxyHandler` makes sure the requests
62 are handled through the proxy when they are set.
63
Georg Brandl8ec7f652007-08-15 14:28:01 +000064 .. versionchanged:: 2.6
65 *timeout* was added.
66
67
68.. function:: install_opener(opener)
69
70 Install an :class:`OpenerDirector` instance as the default global opener.
71 Installing an opener is only necessary if you want urlopen to use that opener;
72 otherwise, simply call :meth:`OpenerDirector.open` instead of :func:`urlopen`.
73 The code does not check for a real :class:`OpenerDirector`, and any class with
74 the appropriate interface will work.
75
76
77.. function:: build_opener([handler, ...])
78
79 Return an :class:`OpenerDirector` instance, which chains the handlers in the
80 order given. *handler*\s can be either instances of :class:`BaseHandler`, or
81 subclasses of :class:`BaseHandler` (in which case it must be possible to call
82 the constructor without any parameters). Instances of the following classes
83 will be in front of the *handler*\s, unless the *handler*\s contain them,
84 instances of them or subclasses of them: :class:`ProxyHandler`,
85 :class:`UnknownHandler`, :class:`HTTPHandler`, :class:`HTTPDefaultErrorHandler`,
86 :class:`HTTPRedirectHandler`, :class:`FTPHandler`, :class:`FileHandler`,
87 :class:`HTTPErrorProcessor`.
88
Guido van Rossum8ee23bb2007-08-27 19:11:11 +000089 If the Python installation has SSL support (i.e., if the :mod:`ssl` module can be imported),
Georg Brandl8ec7f652007-08-15 14:28:01 +000090 :class:`HTTPSHandler` will also be added.
91
92 Beginning in Python 2.3, a :class:`BaseHandler` subclass may also change its
93 :attr:`handler_order` member variable to modify its position in the handlers
94 list.
95
96The following exceptions are raised as appropriate:
97
98
99.. exception:: URLError
100
101 The handlers raise this exception (or derived exceptions) when they run into a
102 problem. It is a subclass of :exc:`IOError`.
103
Georg Brandl586a57a2008-02-02 09:56:20 +0000104 .. attribute:: reason
105
106 The reason for this error. It can be a message string or another exception
107 instance (:exc:`socket.error` for remote URLs, :exc:`OSError` for local
108 URLs).
109
Georg Brandl8ec7f652007-08-15 14:28:01 +0000110
111.. exception:: HTTPError
112
Georg Brandl586a57a2008-02-02 09:56:20 +0000113 Though being an exception (a subclass of :exc:`URLError`), an :exc:`HTTPError`
114 can also function as a non-exceptional file-like return value (the same thing
115 that :func:`urlopen` returns). This is useful when handling exotic HTTP
116 errors, such as requests for authentication.
117
118 .. attribute:: code
119
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000120 An HTTP status code as defined in `RFC 2616 <http://www.faqs.org/rfcs/rfc2616.html>`_.
Georg Brandl586a57a2008-02-02 09:56:20 +0000121 This numeric value corresponds to a value found in the dictionary of
122 codes as found in :attr:`BaseHTTPServer.BaseHTTPRequestHandler.responses`.
123
124
Georg Brandl8ec7f652007-08-15 14:28:01 +0000125
126The following classes are provided:
127
128
Georg Brandl586a57a2008-02-02 09:56:20 +0000129.. class:: Request(url[, data][, headers][, origin_req_host][, unverifiable])
Georg Brandl8ec7f652007-08-15 14:28:01 +0000130
131 This class is an abstraction of a URL request.
132
133 *url* should be a string containing a valid URL.
134
135 *data* may be a string specifying additional data to send to the server, or
136 ``None`` if no such data is needed. Currently HTTP requests are the only ones
137 that use *data*; the HTTP request will be a POST instead of a GET when the
138 *data* parameter is provided. *data* should be a buffer in the standard
139 :mimetype:`application/x-www-form-urlencoded` format. The
140 :func:`urllib.urlencode` function takes a mapping or sequence of 2-tuples and
141 returns a string in this format.
142
143 *headers* should be a dictionary, and will be treated as if :meth:`add_header`
Georg Brandl586a57a2008-02-02 09:56:20 +0000144 was called with each key and value as arguments. This is often used to "spoof"
145 the ``User-Agent`` header, which is used by a browser to identify itself --
146 some HTTP servers only allow requests coming from common browsers as opposed
147 to scripts. For example, Mozilla Firefox may identify itself as ``"Mozilla/5.0
148 (X11; U; Linux i686) Gecko/20071127 Firefox/2.0.0.11"``, while :mod:`urllib2`'s
149 default user agent string is ``"Python-urllib/2.6"`` (on Python 2.6).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000150
151 The final two arguments are only of interest for correct handling of third-party
152 HTTP cookies:
153
154 *origin_req_host* should be the request-host of the origin transaction, as
155 defined by :rfc:`2965`. It defaults to ``cookielib.request_host(self)``. This
156 is the host name or IP address of the original request that was initiated by the
157 user. For example, if the request is for an image in an HTML document, this
158 should be the request-host of the request for the page containing the image.
159
160 *unverifiable* should indicate whether the request is unverifiable, as defined
161 by RFC 2965. It defaults to False. An unverifiable request is one whose URL
162 the user did not have the option to approve. For example, if the request is for
163 an image in an HTML document, and the user had no option to approve the
164 automatic fetching of the image, this should be true.
165
166
167.. class:: OpenerDirector()
168
169 The :class:`OpenerDirector` class opens URLs via :class:`BaseHandler`\ s chained
170 together. It manages the chaining of handlers, and recovery from errors.
171
172
173.. class:: BaseHandler()
174
175 This is the base class for all registered handlers --- and handles only the
176 simple mechanics of registration.
177
178
179.. class:: HTTPDefaultErrorHandler()
180
181 A class which defines a default handler for HTTP error responses; all responses
182 are turned into :exc:`HTTPError` exceptions.
183
184
185.. class:: HTTPRedirectHandler()
186
187 A class to handle redirections.
188
189
190.. class:: HTTPCookieProcessor([cookiejar])
191
192 A class to handle HTTP Cookies.
193
194
195.. class:: ProxyHandler([proxies])
196
197 Cause requests to go through a proxy. If *proxies* is given, it must be a
Senthil Kumaran45a505f2009-10-18 01:24:41 +0000198 dictionary mapping protocol names to URLs of proxies. The default is to read
199 the list of proxies from the environment variables
200 :envvar:`<protocol>_proxy`. If no proxy environment variables are set, in a
201 Windows environment, proxy settings are obtained from the registry's
202 Internet Settings section and in a Mac OS X environment, proxy information
Senthil Kumaran83f1ef62009-10-18 01:58:45 +0000203 is retrieved from the OS X System Configuration Framework.
Senthil Kumaran45a505f2009-10-18 01:24:41 +0000204
Sean Reifscheider45ea86c2008-03-20 03:20:48 +0000205 To disable autodetected proxy pass an empty dictionary.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000206
207
208.. class:: HTTPPasswordMgr()
209
210 Keep a database of ``(realm, uri) -> (user, password)`` mappings.
211
212
213.. class:: HTTPPasswordMgrWithDefaultRealm()
214
215 Keep a database of ``(realm, uri) -> (user, password)`` mappings. A realm of
216 ``None`` is considered a catch-all realm, which is searched if no other realm
217 fits.
218
219
220.. class:: AbstractBasicAuthHandler([password_mgr])
221
222 This is a mixin class that helps with HTTP authentication, both to the remote
223 host and to a proxy. *password_mgr*, if given, should be something that is
224 compatible with :class:`HTTPPasswordMgr`; refer to section
225 :ref:`http-password-mgr` for information on the interface that must be
226 supported.
227
228
229.. class:: HTTPBasicAuthHandler([password_mgr])
230
231 Handle authentication with the remote host. *password_mgr*, if given, should be
232 something that is compatible with :class:`HTTPPasswordMgr`; refer to section
233 :ref:`http-password-mgr` for information on the interface that must be
234 supported.
235
236
237.. class:: ProxyBasicAuthHandler([password_mgr])
238
239 Handle authentication with the proxy. *password_mgr*, if given, should be
240 something that is compatible with :class:`HTTPPasswordMgr`; refer to section
241 :ref:`http-password-mgr` for information on the interface that must be
242 supported.
243
244
245.. class:: AbstractDigestAuthHandler([password_mgr])
246
247 This is a mixin class that helps with HTTP authentication, both to the remote
248 host and to a proxy. *password_mgr*, if given, should be something that is
249 compatible with :class:`HTTPPasswordMgr`; refer to section
250 :ref:`http-password-mgr` for information on the interface that must be
251 supported.
252
253
254.. class:: HTTPDigestAuthHandler([password_mgr])
255
256 Handle authentication with the remote host. *password_mgr*, if given, should be
257 something that is compatible with :class:`HTTPPasswordMgr`; refer to section
258 :ref:`http-password-mgr` for information on the interface that must be
259 supported.
260
261
262.. class:: ProxyDigestAuthHandler([password_mgr])
263
264 Handle authentication with the proxy. *password_mgr*, if given, should be
265 something that is compatible with :class:`HTTPPasswordMgr`; refer to section
266 :ref:`http-password-mgr` for information on the interface that must be
267 supported.
268
269
270.. class:: HTTPHandler()
271
272 A class to handle opening of HTTP URLs.
273
274
275.. class:: HTTPSHandler()
276
277 A class to handle opening of HTTPS URLs.
278
279
280.. class:: FileHandler()
281
282 Open local files.
283
284
285.. class:: FTPHandler()
286
287 Open FTP URLs.
288
289
290.. class:: CacheFTPHandler()
291
292 Open FTP URLs, keeping a cache of open FTP connections to minimize delays.
293
294
295.. class:: UnknownHandler()
296
297 A catch-all class to handle unknown URLs.
298
299
300.. _request-objects:
301
302Request Objects
303---------------
304
305The following methods describe all of :class:`Request`'s public interface, and
306so all must be overridden in subclasses.
307
308
309.. method:: Request.add_data(data)
310
311 Set the :class:`Request` data to *data*. This is ignored by all handlers except
312 HTTP handlers --- and there it should be a byte string, and will change the
313 request to be ``POST`` rather than ``GET``.
314
315
316.. method:: Request.get_method()
317
318 Return a string indicating the HTTP request method. This is only meaningful for
319 HTTP requests, and currently always returns ``'GET'`` or ``'POST'``.
320
321
322.. method:: Request.has_data()
323
324 Return whether the instance has a non-\ ``None`` data.
325
326
327.. method:: Request.get_data()
328
329 Return the instance's data.
330
331
332.. method:: Request.add_header(key, val)
333
334 Add another header to the request. Headers are currently ignored by all
335 handlers except HTTP handlers, where they are added to the list of headers sent
336 to the server. Note that there cannot be more than one header with the same
337 name, and later calls will overwrite previous calls in case the *key* collides.
338 Currently, this is no loss of HTTP functionality, since all headers which have
339 meaning when used more than once have a (header-specific) way of gaining the
340 same functionality using only one header.
341
342
343.. method:: Request.add_unredirected_header(key, header)
344
345 Add a header that will not be added to a redirected request.
346
347 .. versionadded:: 2.4
348
349
350.. method:: Request.has_header(header)
351
352 Return whether the instance has the named header (checks both regular and
353 unredirected).
354
355 .. versionadded:: 2.4
356
357
358.. method:: Request.get_full_url()
359
360 Return the URL given in the constructor.
361
362
363.. method:: Request.get_type()
364
365 Return the type of the URL --- also known as the scheme.
366
367
368.. method:: Request.get_host()
369
370 Return the host to which a connection will be made.
371
372
373.. method:: Request.get_selector()
374
375 Return the selector --- the part of the URL that is sent to the server.
376
377
378.. method:: Request.set_proxy(host, type)
379
380 Prepare the request by connecting to a proxy server. The *host* and *type* will
381 replace those of the instance, and the instance's selector will be the original
382 URL given in the constructor.
383
384
385.. method:: Request.get_origin_req_host()
386
387 Return the request-host of the origin transaction, as defined by :rfc:`2965`.
388 See the documentation for the :class:`Request` constructor.
389
390
391.. method:: Request.is_unverifiable()
392
393 Return whether the request is unverifiable, as defined by RFC 2965. See the
394 documentation for the :class:`Request` constructor.
395
396
397.. _opener-director-objects:
398
399OpenerDirector Objects
400----------------------
401
402:class:`OpenerDirector` instances have the following methods:
403
404
405.. method:: OpenerDirector.add_handler(handler)
406
Georg Brandld0eb8f92009-01-01 11:53:55 +0000407 *handler* should be an instance of :class:`BaseHandler`. The following
408 methods are searched, and added to the possible chains (note that HTTP errors
409 are a special case).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000410
Georg Brandld0eb8f92009-01-01 11:53:55 +0000411 * :samp:`{protocol}_open` --- signal that the handler knows how to open
412 *protocol* URLs.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000413
Georg Brandld0eb8f92009-01-01 11:53:55 +0000414 * :samp:`http_error_{type}` --- signal that the handler knows how to handle
415 HTTP errors with HTTP error code *type*.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000416
Georg Brandld0eb8f92009-01-01 11:53:55 +0000417 * :samp:`{protocol}_error` --- signal that the handler knows how to handle
418 errors from (non-\ ``http``) *protocol*.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000419
Georg Brandld0eb8f92009-01-01 11:53:55 +0000420 * :samp:`{protocol}_request` --- signal that the handler knows how to
421 pre-process *protocol* requests.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000422
Georg Brandld0eb8f92009-01-01 11:53:55 +0000423 * :samp:`{protocol}_response` --- signal that the handler knows how to
Georg Brandl8ec7f652007-08-15 14:28:01 +0000424 post-process *protocol* responses.
425
426
427.. method:: OpenerDirector.open(url[, data][, timeout])
428
429 Open the given *url* (which can be a request object or a string), optionally
Georg Brandlab756f62008-05-11 11:09:35 +0000430 passing the given *data*. Arguments, return values and exceptions raised are
431 the same as those of :func:`urlopen` (which simply calls the :meth:`open`
432 method on the currently installed global :class:`OpenerDirector`). The
433 optional *timeout* parameter specifies a timeout in seconds for blocking
Facundo Batista4f1b1ed2008-05-29 16:39:26 +0000434 operations like the connection attempt (if not specified, the global default
Georg Brandlda69add2010-05-21 20:52:46 +0000435 timeout setting will be used). The timeout feature actually works only for
Senthil Kumaran30630b92010-10-05 18:45:00 +0000436 HTTP, HTTPS and FTP connections).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000437
438 .. versionchanged:: 2.6
439 *timeout* was added.
440
441
442.. method:: OpenerDirector.error(proto[, arg[, ...]])
443
444 Handle an error of the given protocol. This will call the registered error
445 handlers for the given protocol with the given arguments (which are protocol
446 specific). The HTTP protocol is a special case which uses the HTTP response
447 code to determine the specific error handler; refer to the :meth:`http_error_\*`
448 methods of the handler classes.
449
450 Return values and exceptions raised are the same as those of :func:`urlopen`.
451
452OpenerDirector objects open URLs in three stages:
453
454The order in which these methods are called within each stage is determined by
455sorting the handler instances.
456
Georg Brandld0eb8f92009-01-01 11:53:55 +0000457#. Every handler with a method named like :samp:`{protocol}_request` has that
Georg Brandl8ec7f652007-08-15 14:28:01 +0000458 method called to pre-process the request.
459
Georg Brandld0eb8f92009-01-01 11:53:55 +0000460#. Handlers with a method named like :samp:`{protocol}_open` are called to handle
Georg Brandl8ec7f652007-08-15 14:28:01 +0000461 the request. This stage ends when a handler either returns a non-\ :const:`None`
462 value (ie. a response), or raises an exception (usually :exc:`URLError`).
463 Exceptions are allowed to propagate.
464
465 In fact, the above algorithm is first tried for methods named
Georg Brandld0eb8f92009-01-01 11:53:55 +0000466 :meth:`default_open`. If all such methods return :const:`None`, the
467 algorithm is repeated for methods named like :samp:`{protocol}_open`. If all
468 such methods return :const:`None`, the algorithm is repeated for methods
469 named :meth:`unknown_open`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000470
471 Note that the implementation of these methods may involve calls of the parent
Georg Brandl821fc082010-08-01 21:26:45 +0000472 :class:`OpenerDirector` instance's :meth:`~OpenerDirector.open` and
473 :meth:`~OpenerDirector.error` methods.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000474
Georg Brandld0eb8f92009-01-01 11:53:55 +0000475#. Every handler with a method named like :samp:`{protocol}_response` has that
Georg Brandl8ec7f652007-08-15 14:28:01 +0000476 method called to post-process the response.
477
478
479.. _base-handler-objects:
480
481BaseHandler Objects
482-------------------
483
484:class:`BaseHandler` objects provide a couple of methods that are directly
485useful, and others that are meant to be used by derived classes. These are
486intended for direct use:
487
488
489.. method:: BaseHandler.add_parent(director)
490
491 Add a director as parent.
492
493
494.. method:: BaseHandler.close()
495
496 Remove any parents.
497
498The following members and methods should only be used by classes derived from
499:class:`BaseHandler`.
500
501.. note::
502
503 The convention has been adopted that subclasses defining
504 :meth:`protocol_request` or :meth:`protocol_response` methods are named
505 :class:`\*Processor`; all others are named :class:`\*Handler`.
506
507
508.. attribute:: BaseHandler.parent
509
510 A valid :class:`OpenerDirector`, which can be used to open using a different
511 protocol, or handle errors.
512
513
514.. method:: BaseHandler.default_open(req)
515
516 This method is *not* defined in :class:`BaseHandler`, but subclasses should
517 define it if they want to catch all URLs.
518
519 This method, if implemented, will be called by the parent
520 :class:`OpenerDirector`. It should return a file-like object as described in
521 the return value of the :meth:`open` of :class:`OpenerDirector`, or ``None``.
522 It should raise :exc:`URLError`, unless a truly exceptional thing happens (for
523 example, :exc:`MemoryError` should not be mapped to :exc:`URLError`).
524
525 This method will be called before any protocol-specific open method.
526
527
528.. method:: BaseHandler.protocol_open(req)
529 :noindex:
530
Georg Brandld0eb8f92009-01-01 11:53:55 +0000531 ("protocol" is to be replaced by the protocol name.)
532
Georg Brandl8ec7f652007-08-15 14:28:01 +0000533 This method is *not* defined in :class:`BaseHandler`, but subclasses should
Georg Brandld0eb8f92009-01-01 11:53:55 +0000534 define it if they want to handle URLs with the given *protocol*.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000535
536 This method, if defined, will be called by the parent :class:`OpenerDirector`.
537 Return values should be the same as for :meth:`default_open`.
538
539
540.. method:: BaseHandler.unknown_open(req)
541
542 This method is *not* defined in :class:`BaseHandler`, but subclasses should
543 define it if they want to catch all URLs with no specific registered handler to
544 open it.
545
546 This method, if implemented, will be called by the :attr:`parent`
547 :class:`OpenerDirector`. Return values should be the same as for
548 :meth:`default_open`.
549
550
551.. method:: BaseHandler.http_error_default(req, fp, code, msg, hdrs)
552
553 This method is *not* defined in :class:`BaseHandler`, but subclasses should
554 override it if they intend to provide a catch-all for otherwise unhandled HTTP
555 errors. It will be called automatically by the :class:`OpenerDirector` getting
556 the error, and should not normally be called in other circumstances.
557
558 *req* will be a :class:`Request` object, *fp* will be a file-like object with
559 the HTTP error body, *code* will be the three-digit code of the error, *msg*
560 will be the user-visible explanation of the code and *hdrs* will be a mapping
561 object with the headers of the error.
562
563 Return values and exceptions raised should be the same as those of
564 :func:`urlopen`.
565
566
567.. method:: BaseHandler.http_error_nnn(req, fp, code, msg, hdrs)
568
569 *nnn* should be a three-digit HTTP error code. This method is also not defined
570 in :class:`BaseHandler`, but will be called, if it exists, on an instance of a
571 subclass, when an HTTP error with code *nnn* occurs.
572
573 Subclasses should override this method to handle specific HTTP errors.
574
575 Arguments, return values and exceptions raised should be the same as for
576 :meth:`http_error_default`.
577
578
579.. method:: BaseHandler.protocol_request(req)
580 :noindex:
581
Georg Brandld0eb8f92009-01-01 11:53:55 +0000582 ("protocol" is to be replaced by the protocol name.)
583
Georg Brandl8ec7f652007-08-15 14:28:01 +0000584 This method is *not* defined in :class:`BaseHandler`, but subclasses should
Georg Brandld0eb8f92009-01-01 11:53:55 +0000585 define it if they want to pre-process requests of the given *protocol*.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000586
587 This method, if defined, will be called by the parent :class:`OpenerDirector`.
588 *req* will be a :class:`Request` object. The return value should be a
589 :class:`Request` object.
590
591
592.. method:: BaseHandler.protocol_response(req, response)
593 :noindex:
594
Georg Brandld0eb8f92009-01-01 11:53:55 +0000595 ("protocol" is to be replaced by the protocol name.)
596
Georg Brandl8ec7f652007-08-15 14:28:01 +0000597 This method is *not* defined in :class:`BaseHandler`, but subclasses should
Georg Brandld0eb8f92009-01-01 11:53:55 +0000598 define it if they want to post-process responses of the given *protocol*.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000599
600 This method, if defined, will be called by the parent :class:`OpenerDirector`.
601 *req* will be a :class:`Request` object. *response* will be an object
602 implementing the same interface as the return value of :func:`urlopen`. The
603 return value should implement the same interface as the return value of
604 :func:`urlopen`.
605
606
607.. _http-redirect-handler:
608
609HTTPRedirectHandler Objects
610---------------------------
611
612.. note::
613
614 Some HTTP redirections require action from this module's client code. If this
615 is the case, :exc:`HTTPError` is raised. See :rfc:`2616` for details of the
616 precise meanings of the various redirection codes.
617
618
Georg Brandl8fba5b32009-02-13 10:40:14 +0000619.. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000620
621 Return a :class:`Request` or ``None`` in response to a redirect. This is called
622 by the default implementations of the :meth:`http_error_30\*` methods when a
623 redirection is received from the server. If a redirection should take place,
624 return a new :class:`Request` to allow :meth:`http_error_30\*` to perform the
Georg Brandl8fba5b32009-02-13 10:40:14 +0000625 redirect to *newurl*. Otherwise, raise :exc:`HTTPError` if no other handler
626 should try to handle this URL, or return ``None`` if you can't but another
627 handler might.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000628
629 .. note::
630
631 The default implementation of this method does not strictly follow :rfc:`2616`,
632 which says that 301 and 302 responses to ``POST`` requests must not be
633 automatically redirected without confirmation by the user. In reality, browsers
634 do allow automatic redirection of these responses, changing the POST to a
635 ``GET``, and the default implementation reproduces this behavior.
636
637
638.. method:: HTTPRedirectHandler.http_error_301(req, fp, code, msg, hdrs)
639
Georg Brandl8fba5b32009-02-13 10:40:14 +0000640 Redirect to the ``Location:`` or ``URI:`` URL. This method is called by the
641 parent :class:`OpenerDirector` when getting an HTTP 'moved permanently' response.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000642
643
644.. method:: HTTPRedirectHandler.http_error_302(req, fp, code, msg, hdrs)
645
646 The same as :meth:`http_error_301`, but called for the 'found' response.
647
648
649.. method:: HTTPRedirectHandler.http_error_303(req, fp, code, msg, hdrs)
650
651 The same as :meth:`http_error_301`, but called for the 'see other' response.
652
653
654.. method:: HTTPRedirectHandler.http_error_307(req, fp, code, msg, hdrs)
655
656 The same as :meth:`http_error_301`, but called for the 'temporary redirect'
657 response.
658
659
660.. _http-cookie-processor:
661
662HTTPCookieProcessor Objects
663---------------------------
664
665.. versionadded:: 2.4
666
667:class:`HTTPCookieProcessor` instances have one attribute:
668
669
670.. attribute:: HTTPCookieProcessor.cookiejar
671
672 The :class:`cookielib.CookieJar` in which cookies are stored.
673
674
675.. _proxy-handler:
676
677ProxyHandler Objects
678--------------------
679
680
681.. method:: ProxyHandler.protocol_open(request)
682 :noindex:
683
Georg Brandld0eb8f92009-01-01 11:53:55 +0000684 ("protocol" is to be replaced by the protocol name.)
685
686 The :class:`ProxyHandler` will have a method :samp:`{protocol}_open` for every
Georg Brandl8ec7f652007-08-15 14:28:01 +0000687 *protocol* which has a proxy in the *proxies* dictionary given in the
688 constructor. The method will modify requests to go through the proxy, by
689 calling ``request.set_proxy()``, and call the next handler in the chain to
690 actually execute the protocol.
691
692
693.. _http-password-mgr:
694
695HTTPPasswordMgr Objects
696-----------------------
697
698These methods are available on :class:`HTTPPasswordMgr` and
699:class:`HTTPPasswordMgrWithDefaultRealm` objects.
700
701
702.. method:: HTTPPasswordMgr.add_password(realm, uri, user, passwd)
703
704 *uri* can be either a single URI, or a sequence of URIs. *realm*, *user* and
705 *passwd* must be strings. This causes ``(user, passwd)`` to be used as
706 authentication tokens when authentication for *realm* and a super-URI of any of
707 the given URIs is given.
708
709
710.. method:: HTTPPasswordMgr.find_user_password(realm, authuri)
711
712 Get user/password for given realm and URI, if any. This method will return
713 ``(None, None)`` if there is no matching user/password.
714
715 For :class:`HTTPPasswordMgrWithDefaultRealm` objects, the realm ``None`` will be
716 searched if the given *realm* has no matching user/password.
717
718
719.. _abstract-basic-auth-handler:
720
721AbstractBasicAuthHandler Objects
722--------------------------------
723
724
725.. method:: AbstractBasicAuthHandler.http_error_auth_reqed(authreq, host, req, headers)
726
727 Handle an authentication request by getting a user/password pair, and re-trying
728 the request. *authreq* should be the name of the header where the information
729 about the realm is included in the request, *host* specifies the URL and path to
730 authenticate for, *req* should be the (failed) :class:`Request` object, and
731 *headers* should be the error headers.
732
733 *host* is either an authority (e.g. ``"python.org"``) or a URL containing an
734 authority component (e.g. ``"http://python.org/"``). In either case, the
735 authority must not contain a userinfo component (so, ``"python.org"`` and
736 ``"python.org:80"`` are fine, ``"joe:password@python.org"`` is not).
737
738
739.. _http-basic-auth-handler:
740
741HTTPBasicAuthHandler Objects
742----------------------------
743
744
745.. method:: HTTPBasicAuthHandler.http_error_401(req, fp, code, msg, hdrs)
746
747 Retry the request with authentication information, if available.
748
749
750.. _proxy-basic-auth-handler:
751
752ProxyBasicAuthHandler Objects
753-----------------------------
754
755
756.. method:: ProxyBasicAuthHandler.http_error_407(req, fp, code, msg, hdrs)
757
758 Retry the request with authentication information, if available.
759
760
761.. _abstract-digest-auth-handler:
762
763AbstractDigestAuthHandler Objects
764---------------------------------
765
766
767.. method:: AbstractDigestAuthHandler.http_error_auth_reqed(authreq, host, req, headers)
768
769 *authreq* should be the name of the header where the information about the realm
770 is included in the request, *host* should be the host to authenticate to, *req*
771 should be the (failed) :class:`Request` object, and *headers* should be the
772 error headers.
773
774
775.. _http-digest-auth-handler:
776
777HTTPDigestAuthHandler Objects
778-----------------------------
779
780
781.. method:: HTTPDigestAuthHandler.http_error_401(req, fp, code, msg, hdrs)
782
783 Retry the request with authentication information, if available.
784
785
786.. _proxy-digest-auth-handler:
787
788ProxyDigestAuthHandler Objects
789------------------------------
790
791
792.. method:: ProxyDigestAuthHandler.http_error_407(req, fp, code, msg, hdrs)
793
794 Retry the request with authentication information, if available.
795
796
797.. _http-handler-objects:
798
799HTTPHandler Objects
800-------------------
801
802
803.. method:: HTTPHandler.http_open(req)
804
805 Send an HTTP request, which can be either GET or POST, depending on
806 ``req.has_data()``.
807
808
809.. _https-handler-objects:
810
811HTTPSHandler Objects
812--------------------
813
814
815.. method:: HTTPSHandler.https_open(req)
816
817 Send an HTTPS request, which can be either GET or POST, depending on
818 ``req.has_data()``.
819
820
821.. _file-handler-objects:
822
823FileHandler Objects
824-------------------
825
826
827.. method:: FileHandler.file_open(req)
828
829 Open the file locally, if there is no host name, or the host name is
830 ``'localhost'``. Change the protocol to ``ftp`` otherwise, and retry opening it
831 using :attr:`parent`.
832
833
834.. _ftp-handler-objects:
835
836FTPHandler Objects
837------------------
838
839
840.. method:: FTPHandler.ftp_open(req)
841
842 Open the FTP file indicated by *req*. The login is always done with empty
843 username and password.
844
845
846.. _cacheftp-handler-objects:
847
848CacheFTPHandler Objects
849-----------------------
850
851:class:`CacheFTPHandler` objects are :class:`FTPHandler` objects with the
852following additional methods:
853
854
855.. method:: CacheFTPHandler.setTimeout(t)
856
857 Set timeout of connections to *t* seconds.
858
859
860.. method:: CacheFTPHandler.setMaxConns(m)
861
862 Set maximum number of cached connections to *m*.
863
864
865.. _unknown-handler-objects:
866
867UnknownHandler Objects
868----------------------
869
870
871.. method:: UnknownHandler.unknown_open()
872
873 Raise a :exc:`URLError` exception.
874
875
876.. _http-error-processor-objects:
877
878HTTPErrorProcessor Objects
879--------------------------
880
881.. versionadded:: 2.4
882
883
884.. method:: HTTPErrorProcessor.unknown_open()
885
886 Process HTTP error responses.
887
888 For 200 error codes, the response object is returned immediately.
889
890 For non-200 error codes, this simply passes the job on to the
Georg Brandld0eb8f92009-01-01 11:53:55 +0000891 :samp:`{protocol}_error_code` handler methods, via
892 :meth:`OpenerDirector.error`. Eventually,
893 :class:`urllib2.HTTPDefaultErrorHandler` will raise an :exc:`HTTPError` if no
894 other handler handles the error.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000895
896
897.. _urllib2-examples:
898
899Examples
900--------
901
902This example gets the python.org main page and displays the first 100 bytes of
903it::
904
905 >>> import urllib2
906 >>> f = urllib2.urlopen('http://www.python.org/')
907 >>> print f.read(100)
908 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
909 <?xml-stylesheet href="./css/ht2html
910
911Here we are sending a data-stream to the stdin of a CGI and reading the data it
912returns to us. Note that this example will only work when the Python
913installation supports SSL. ::
914
915 >>> import urllib2
916 >>> req = urllib2.Request(url='https://localhost/cgi-bin/test.cgi',
917 ... data='This data is passed to stdin of the CGI')
918 >>> f = urllib2.urlopen(req)
919 >>> print f.read()
920 Got Data: "This data is passed to stdin of the CGI"
921
922The code for the sample CGI used in the above example is::
923
924 #!/usr/bin/env python
925 import sys
926 data = sys.stdin.read()
927 print 'Content-type: text-plain\n\nGot Data: "%s"' % data
928
929Use of Basic HTTP Authentication::
930
931 import urllib2
932 # Create an OpenerDirector with support for Basic HTTP Authentication...
933 auth_handler = urllib2.HTTPBasicAuthHandler()
934 auth_handler.add_password(realm='PDQ Application',
935 uri='https://mahler:8092/site-updates.py',
936 user='klem',
937 passwd='kadidd!ehopper')
938 opener = urllib2.build_opener(auth_handler)
939 # ...and install it globally so it can be used with urlopen.
940 urllib2.install_opener(opener)
941 urllib2.urlopen('http://www.example.com/login.html')
942
943:func:`build_opener` provides many handlers by default, including a
944:class:`ProxyHandler`. By default, :class:`ProxyHandler` uses the environment
945variables named ``<scheme>_proxy``, where ``<scheme>`` is the URL scheme
946involved. For example, the :envvar:`http_proxy` environment variable is read to
947obtain the HTTP proxy's URL.
948
949This example replaces the default :class:`ProxyHandler` with one that uses
Benjamin Peterson90f36732008-07-12 20:16:19 +0000950programmatically-supplied proxy URLs, and adds proxy authorization support with
Georg Brandl8ec7f652007-08-15 14:28:01 +0000951:class:`ProxyBasicAuthHandler`. ::
952
953 proxy_handler = urllib2.ProxyHandler({'http': 'http://www.example.com:3128/'})
Senthil Kumaranf9a21f42009-12-24 02:18:14 +0000954 proxy_auth_handler = urllib2.ProxyBasicAuthHandler()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000955 proxy_auth_handler.add_password('realm', 'host', 'username', 'password')
956
Senthil Kumaranf9a21f42009-12-24 02:18:14 +0000957 opener = urllib2.build_opener(proxy_handler, proxy_auth_handler)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000958 # This time, rather than install the OpenerDirector, we use it directly:
959 opener.open('http://www.example.com/login.html')
960
961Adding HTTP headers:
962
963Use the *headers* argument to the :class:`Request` constructor, or::
964
965 import urllib2
966 req = urllib2.Request('http://www.example.com/')
967 req.add_header('Referer', 'http://www.python.org/')
968 r = urllib2.urlopen(req)
969
970:class:`OpenerDirector` automatically adds a :mailheader:`User-Agent` header to
971every :class:`Request`. To change this::
972
973 import urllib2
974 opener = urllib2.build_opener()
975 opener.addheaders = [('User-agent', 'Mozilla/5.0')]
976 opener.open('http://www.example.com/')
977
978Also, remember that a few standard headers (:mailheader:`Content-Length`,
979:mailheader:`Content-Type` and :mailheader:`Host`) are added when the
980:class:`Request` is passed to :func:`urlopen` (or :meth:`OpenerDirector.open`).
981