Martin Panter | fcd7d34 | 2016-06-01 08:20:22 +0000 | [diff] [blame] | 1 | .. _urllib-howto: |
| 2 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 3 | ************************************************ |
| 4 | HOWTO Fetch Internet Resources Using urllib2 |
| 5 | ************************************************ |
| 6 | |
| 7 | :Author: `Michael Foord <http://www.voidspace.org.uk/python/index.shtml>`_ |
| 8 | |
| 9 | .. note:: |
| 10 | |
Serhiy Storchaka | 9a118f1 | 2016-04-17 09:37:36 +0300 | [diff] [blame] | 11 | There is a French translation of an earlier revision of this |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 12 | HOWTO, available at `urllib2 - Le Manuel manquant |
Georg Brandl | 0267781 | 2008-03-15 00:20:19 +0000 | [diff] [blame] | 13 | <http://www.voidspace.org.uk/python/articles/urllib2_francais.shtml>`_. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 14 | |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 15 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 16 | |
| 17 | Introduction |
| 18 | ============ |
| 19 | |
| 20 | .. sidebar:: Related Articles |
| 21 | |
| 22 | You may also find useful the following article on fetching web resources |
Serhiy Storchaka | b712873 | 2013-12-24 11:04:06 +0200 | [diff] [blame] | 23 | with Python: |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 24 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 25 | * `Basic Authentication <http://www.voidspace.org.uk/python/articles/authentication.shtml>`_ |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 26 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 27 | A tutorial on *Basic Authentication*, with examples in Python. |
| 28 | |
Georg Brandl | 06f3b3b | 2014-10-29 08:36:35 +0100 | [diff] [blame] | 29 | **urllib2** is a Python module for fetching URLs |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 30 | (Uniform Resource Locators). It offers a very simple interface, in the form of |
| 31 | the *urlopen* function. This is capable of fetching URLs using a variety of |
| 32 | different protocols. It also offers a slightly more complex interface for |
| 33 | handling common situations - like basic authentication, cookies, proxies and so |
| 34 | on. These are provided by objects called handlers and openers. |
| 35 | |
| 36 | urllib2 supports fetching URLs for many "URL schemes" (identified by the string |
| 37 | before the ":" in URL - for example "ftp" is the URL scheme of |
| 38 | "ftp://python.org/") using their associated network protocols (e.g. FTP, HTTP). |
| 39 | This tutorial focuses on the most common case, HTTP. |
| 40 | |
| 41 | For straightforward situations *urlopen* is very easy to use. But as soon as you |
| 42 | encounter errors or non-trivial cases when opening HTTP URLs, you will need some |
| 43 | understanding of the HyperText Transfer Protocol. The most comprehensive and |
| 44 | authoritative reference to HTTP is :rfc:`2616`. This is a technical document and |
| 45 | not intended to be easy to read. This HOWTO aims to illustrate using *urllib2*, |
| 46 | with enough detail about HTTP to help you through. It is not intended to replace |
| 47 | the :mod:`urllib2` docs, but is supplementary to them. |
| 48 | |
| 49 | |
| 50 | Fetching URLs |
| 51 | ============= |
| 52 | |
| 53 | The simplest way to use urllib2 is as follows:: |
| 54 | |
| 55 | import urllib2 |
| 56 | response = urllib2.urlopen('http://python.org/') |
| 57 | html = response.read() |
| 58 | |
| 59 | Many uses of urllib2 will be that simple (note that instead of an 'http:' URL we |
Martin Panter | 6a8163a | 2016-04-15 02:14:19 +0000 | [diff] [blame] | 60 | could have used a URL starting with 'ftp:', 'file:', etc.). However, it's the |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 61 | purpose of this tutorial to explain the more complicated cases, concentrating on |
| 62 | HTTP. |
| 63 | |
| 64 | HTTP is based on requests and responses - the client makes requests and servers |
| 65 | send responses. urllib2 mirrors this with a ``Request`` object which represents |
| 66 | the HTTP request you are making. In its simplest form you create a Request |
| 67 | object that specifies the URL you want to fetch. Calling ``urlopen`` with this |
| 68 | Request object returns a response object for the URL requested. This response is |
| 69 | a file-like object, which means you can for example call ``.read()`` on the |
| 70 | response:: |
| 71 | |
| 72 | import urllib2 |
| 73 | |
| 74 | req = urllib2.Request('http://www.voidspace.org.uk') |
| 75 | response = urllib2.urlopen(req) |
| 76 | the_page = response.read() |
| 77 | |
| 78 | Note that urllib2 makes use of the same Request interface to handle all URL |
| 79 | schemes. For example, you can make an FTP request like so:: |
| 80 | |
| 81 | req = urllib2.Request('ftp://example.com/') |
| 82 | |
| 83 | In the case of HTTP, there are two extra things that Request objects allow you |
| 84 | to do: First, you can pass data to be sent to the server. Second, you can pass |
| 85 | extra information ("metadata") *about* the data or the about request itself, to |
| 86 | the server - this information is sent as HTTP "headers". Let's look at each of |
| 87 | these in turn. |
| 88 | |
| 89 | Data |
| 90 | ---- |
| 91 | |
| 92 | Sometimes you want to send data to a URL (often the URL will refer to a CGI |
| 93 | (Common Gateway Interface) script [#]_ or other web application). With HTTP, |
| 94 | this is often done using what's known as a **POST** request. This is often what |
| 95 | your browser does when you submit a HTML form that you filled in on the web. Not |
| 96 | all POSTs have to come from forms: you can use a POST to transmit arbitrary data |
| 97 | to your own application. In the common case of HTML forms, the data needs to be |
| 98 | encoded in a standard way, and then passed to the Request object as the ``data`` |
| 99 | argument. The encoding is done using a function from the ``urllib`` library |
| 100 | *not* from ``urllib2``. :: |
| 101 | |
| 102 | import urllib |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 103 | import urllib2 |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 104 | |
| 105 | url = 'http://www.someserver.com/cgi-bin/register.cgi' |
| 106 | values = {'name' : 'Michael Foord', |
| 107 | 'location' : 'Northampton', |
| 108 | 'language' : 'Python' } |
| 109 | |
| 110 | data = urllib.urlencode(values) |
| 111 | req = urllib2.Request(url, data) |
| 112 | response = urllib2.urlopen(req) |
| 113 | the_page = response.read() |
| 114 | |
| 115 | Note that other encodings are sometimes required (e.g. for file upload from HTML |
| 116 | forms - see `HTML Specification, Form Submission |
Serhiy Storchaka | b4905ef | 2016-05-07 10:50:12 +0300 | [diff] [blame] | 117 | <https://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13>`_ for more |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 118 | details). |
| 119 | |
| 120 | If you do not pass the ``data`` argument, urllib2 uses a **GET** request. One |
| 121 | way in which GET and POST requests differ is that POST requests often have |
| 122 | "side-effects": they change the state of the system in some way (for example by |
| 123 | placing an order with the website for a hundredweight of tinned spam to be |
| 124 | delivered to your door). Though the HTTP standard makes it clear that POSTs are |
| 125 | intended to *always* cause side-effects, and GET requests *never* to cause |
| 126 | side-effects, nothing prevents a GET request from having side-effects, nor a |
| 127 | POST requests from having no side-effects. Data can also be passed in an HTTP |
| 128 | GET request by encoding it in the URL itself. |
| 129 | |
| 130 | This is done as follows:: |
| 131 | |
| 132 | >>> import urllib2 |
| 133 | >>> import urllib |
| 134 | >>> data = {} |
| 135 | >>> data['name'] = 'Somebody Here' |
| 136 | >>> data['location'] = 'Northampton' |
| 137 | >>> data['language'] = 'Python' |
| 138 | >>> url_values = urllib.urlencode(data) |
Senthil Kumaran | 7c06801 | 2012-10-09 01:03:35 -0700 | [diff] [blame] | 139 | >>> print url_values # The order may differ. #doctest: +SKIP |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 140 | name=Somebody+Here&language=Python&location=Northampton |
| 141 | >>> url = 'http://www.example.com/example.cgi' |
| 142 | >>> full_url = url + '?' + url_values |
Georg Brandl | f364ce2 | 2011-07-23 08:06:33 +0200 | [diff] [blame] | 143 | >>> data = urllib2.urlopen(full_url) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 144 | |
| 145 | Notice that the full URL is created by adding a ``?`` to the URL, followed by |
| 146 | the encoded values. |
| 147 | |
| 148 | Headers |
| 149 | ------- |
| 150 | |
| 151 | We'll discuss here one particular HTTP header, to illustrate how to add headers |
| 152 | to your HTTP request. |
| 153 | |
| 154 | Some websites [#]_ dislike being browsed by programs, or send different versions |
Serhiy Storchaka | 610f84a | 2013-12-23 18:19:34 +0200 | [diff] [blame] | 155 | to different browsers [#]_. By default urllib2 identifies itself as |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 156 | ``Python-urllib/x.y`` (where ``x`` and ``y`` are the major and minor version |
| 157 | numbers of the Python release, |
| 158 | e.g. ``Python-urllib/2.5``), which may confuse the site, or just plain |
| 159 | not work. The way a browser identifies itself is through the |
| 160 | ``User-Agent`` header [#]_. When you create a Request object you can |
| 161 | pass a dictionary of headers in. The following example makes the same |
| 162 | request as above, but identifies itself as a version of Internet |
| 163 | Explorer [#]_. :: |
| 164 | |
| 165 | import urllib |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 166 | import urllib2 |
| 167 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 168 | url = 'http://www.someserver.com/cgi-bin/register.cgi' |
Benjamin Peterson | 1b822d0 | 2015-09-20 23:16:45 +0500 | [diff] [blame] | 169 | user_agent = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64)' |
Serhiy Storchaka | 12d547a | 2016-05-10 13:45:32 +0300 | [diff] [blame] | 170 | values = {'name': 'Michael Foord', |
| 171 | 'location': 'Northampton', |
| 172 | 'language': 'Python' } |
| 173 | headers = {'User-Agent': user_agent} |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 174 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 175 | data = urllib.urlencode(values) |
| 176 | req = urllib2.Request(url, data, headers) |
| 177 | response = urllib2.urlopen(req) |
| 178 | the_page = response.read() |
| 179 | |
| 180 | The response also has two useful methods. See the section on `info and geturl`_ |
| 181 | which comes after we have a look at what happens when things go wrong. |
| 182 | |
| 183 | |
| 184 | Handling Exceptions |
| 185 | =================== |
| 186 | |
Georg Brandl | d7d4fd7 | 2009-07-26 14:37:28 +0000 | [diff] [blame] | 187 | *urlopen* raises :exc:`URLError` when it cannot handle a response (though as |
| 188 | usual with Python APIs, built-in exceptions such as :exc:`ValueError`, |
| 189 | :exc:`TypeError` etc. may also be raised). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 190 | |
Andrew M. Kuchling | db74c8a | 2008-09-30 13:00:51 +0000 | [diff] [blame] | 191 | :exc:`HTTPError` is the subclass of :exc:`URLError` raised in the specific case of |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 192 | HTTP URLs. |
| 193 | |
| 194 | URLError |
| 195 | -------- |
| 196 | |
| 197 | Often, URLError is raised because there is no network connection (no route to |
| 198 | the specified server), or the specified server doesn't exist. In this case, the |
| 199 | exception raised will have a 'reason' attribute, which is a tuple containing an |
| 200 | error code and a text error message. |
| 201 | |
| 202 | e.g. :: |
| 203 | |
| 204 | >>> req = urllib2.Request('http://www.pretend_server.org') |
| 205 | >>> try: urllib2.urlopen(req) |
Andrew Svetlov | 1625d88 | 2012-10-30 21:56:43 +0200 | [diff] [blame] | 206 | ... except URLError as e: |
Senthil Kumaran | 7c06801 | 2012-10-09 01:03:35 -0700 | [diff] [blame] | 207 | ... print e.reason #doctest: +SKIP |
| 208 | ... |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 209 | (4, 'getaddrinfo failed') |
| 210 | |
| 211 | |
| 212 | HTTPError |
| 213 | --------- |
| 214 | |
| 215 | Every HTTP response from the server contains a numeric "status code". Sometimes |
| 216 | the status code indicates that the server is unable to fulfil the request. The |
| 217 | default handlers will handle some of these responses for you (for example, if |
| 218 | the response is a "redirection" that requests the client fetch the document from |
| 219 | a different URL, urllib2 will handle that for you). For those it can't handle, |
Andrew M. Kuchling | db74c8a | 2008-09-30 13:00:51 +0000 | [diff] [blame] | 220 | urlopen will raise an :exc:`HTTPError`. Typical errors include '404' (page not |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 221 | found), '403' (request forbidden), and '401' (authentication required). |
| 222 | |
| 223 | See section 10 of RFC 2616 for a reference on all the HTTP error codes. |
| 224 | |
Andrew M. Kuchling | db74c8a | 2008-09-30 13:00:51 +0000 | [diff] [blame] | 225 | The :exc:`HTTPError` instance raised will have an integer 'code' attribute, which |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 226 | corresponds to the error sent by the server. |
| 227 | |
| 228 | Error Codes |
| 229 | ~~~~~~~~~~~ |
| 230 | |
| 231 | Because the default handlers handle redirects (codes in the 300 range), and |
| 232 | codes in the 100-299 range indicate success, you will usually only see error |
| 233 | codes in the 400-599 range. |
| 234 | |
| 235 | ``BaseHTTPServer.BaseHTTPRequestHandler.responses`` is a useful dictionary of |
| 236 | response codes in that shows all the response codes used by RFC 2616. The |
| 237 | dictionary is reproduced here for convenience :: |
| 238 | |
| 239 | # Table mapping response codes to messages; entries have the |
| 240 | # form {code: (shortmessage, longmessage)}. |
| 241 | responses = { |
| 242 | 100: ('Continue', 'Request received, please continue'), |
| 243 | 101: ('Switching Protocols', |
| 244 | 'Switching to new protocol; obey Upgrade header'), |
| 245 | |
| 246 | 200: ('OK', 'Request fulfilled, document follows'), |
| 247 | 201: ('Created', 'Document created, URL follows'), |
| 248 | 202: ('Accepted', |
| 249 | 'Request accepted, processing continues off-line'), |
| 250 | 203: ('Non-Authoritative Information', 'Request fulfilled from cache'), |
| 251 | 204: ('No Content', 'Request fulfilled, nothing follows'), |
| 252 | 205: ('Reset Content', 'Clear input form for further input.'), |
| 253 | 206: ('Partial Content', 'Partial content follows.'), |
| 254 | |
| 255 | 300: ('Multiple Choices', |
| 256 | 'Object has several resources -- see URI list'), |
| 257 | 301: ('Moved Permanently', 'Object moved permanently -- see URI list'), |
| 258 | 302: ('Found', 'Object moved temporarily -- see URI list'), |
| 259 | 303: ('See Other', 'Object moved -- see Method and URL list'), |
| 260 | 304: ('Not Modified', |
| 261 | 'Document has not changed since given time'), |
| 262 | 305: ('Use Proxy', |
| 263 | 'You must use proxy specified in Location to access this ' |
| 264 | 'resource.'), |
| 265 | 307: ('Temporary Redirect', |
| 266 | 'Object moved temporarily -- see URI list'), |
| 267 | |
| 268 | 400: ('Bad Request', |
| 269 | 'Bad request syntax or unsupported method'), |
| 270 | 401: ('Unauthorized', |
| 271 | 'No permission -- see authorization schemes'), |
| 272 | 402: ('Payment Required', |
| 273 | 'No payment -- see charging schemes'), |
| 274 | 403: ('Forbidden', |
| 275 | 'Request forbidden -- authorization will not help'), |
| 276 | 404: ('Not Found', 'Nothing matches the given URI'), |
| 277 | 405: ('Method Not Allowed', |
| 278 | 'Specified method is invalid for this server.'), |
| 279 | 406: ('Not Acceptable', 'URI not available in preferred format.'), |
| 280 | 407: ('Proxy Authentication Required', 'You must authenticate with ' |
| 281 | 'this proxy before proceeding.'), |
| 282 | 408: ('Request Timeout', 'Request timed out; try again later.'), |
| 283 | 409: ('Conflict', 'Request conflict.'), |
| 284 | 410: ('Gone', |
| 285 | 'URI no longer exists and has been permanently removed.'), |
| 286 | 411: ('Length Required', 'Client must specify Content-Length.'), |
| 287 | 412: ('Precondition Failed', 'Precondition in headers is false.'), |
| 288 | 413: ('Request Entity Too Large', 'Entity is too large.'), |
| 289 | 414: ('Request-URI Too Long', 'URI is too long.'), |
| 290 | 415: ('Unsupported Media Type', 'Entity body in unsupported format.'), |
| 291 | 416: ('Requested Range Not Satisfiable', |
| 292 | 'Cannot satisfy request range.'), |
| 293 | 417: ('Expectation Failed', |
| 294 | 'Expect condition could not be satisfied.'), |
| 295 | |
| 296 | 500: ('Internal Server Error', 'Server got itself in trouble'), |
| 297 | 501: ('Not Implemented', |
| 298 | 'Server does not support this operation'), |
| 299 | 502: ('Bad Gateway', 'Invalid responses from another server/proxy.'), |
| 300 | 503: ('Service Unavailable', |
| 301 | 'The server cannot process the request due to a high load'), |
| 302 | 504: ('Gateway Timeout', |
| 303 | 'The gateway server did not receive a timely response'), |
| 304 | 505: ('HTTP Version Not Supported', 'Cannot fulfill request.'), |
| 305 | } |
| 306 | |
| 307 | When an error is raised the server responds by returning an HTTP error code |
Andrew M. Kuchling | db74c8a | 2008-09-30 13:00:51 +0000 | [diff] [blame] | 308 | *and* an error page. You can use the :exc:`HTTPError` instance as a response on the |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 309 | page returned. This means that as well as the code attribute, it also has read, |
| 310 | geturl, and info, methods. :: |
| 311 | |
| 312 | >>> req = urllib2.Request('http://www.python.org/fish.html') |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 313 | >>> try: |
Senthil Kumaran | 7c06801 | 2012-10-09 01:03:35 -0700 | [diff] [blame] | 314 | ... urllib2.urlopen(req) |
Andrew Svetlov | 1625d88 | 2012-10-30 21:56:43 +0200 | [diff] [blame] | 315 | ... except urllib2.HTTPError as e: |
Senthil Kumaran | 7c06801 | 2012-10-09 01:03:35 -0700 | [diff] [blame] | 316 | ... print e.code |
| 317 | ... print e.read() #doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE |
| 318 | ... |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 319 | 404 |
Senthil Kumaran | 7c06801 | 2012-10-09 01:03:35 -0700 | [diff] [blame] | 320 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 321 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 322 | ... |
| 323 | <title>Page Not Found</title> |
| 324 | ... |
| 325 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 326 | |
| 327 | Wrapping it Up |
| 328 | -------------- |
| 329 | |
Andrew M. Kuchling | db74c8a | 2008-09-30 13:00:51 +0000 | [diff] [blame] | 330 | So if you want to be prepared for :exc:`HTTPError` *or* :exc:`URLError` there are two |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 331 | basic approaches. I prefer the second approach. |
| 332 | |
| 333 | Number 1 |
| 334 | ~~~~~~~~ |
| 335 | |
| 336 | :: |
| 337 | |
| 338 | |
| 339 | from urllib2 import Request, urlopen, URLError, HTTPError |
| 340 | req = Request(someurl) |
| 341 | try: |
| 342 | response = urlopen(req) |
Andrew Svetlov | 1625d88 | 2012-10-30 21:56:43 +0200 | [diff] [blame] | 343 | except HTTPError as e: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 344 | print 'The server couldn\'t fulfill the request.' |
| 345 | print 'Error code: ', e.code |
Andrew Svetlov | 1625d88 | 2012-10-30 21:56:43 +0200 | [diff] [blame] | 346 | except URLError as e: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 347 | print 'We failed to reach a server.' |
| 348 | print 'Reason: ', e.reason |
| 349 | else: |
| 350 | # everything is fine |
| 351 | |
| 352 | |
| 353 | .. note:: |
| 354 | |
| 355 | The ``except HTTPError`` *must* come first, otherwise ``except URLError`` |
Andrew M. Kuchling | db74c8a | 2008-09-30 13:00:51 +0000 | [diff] [blame] | 356 | will *also* catch an :exc:`HTTPError`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 357 | |
| 358 | Number 2 |
| 359 | ~~~~~~~~ |
| 360 | |
| 361 | :: |
| 362 | |
| 363 | from urllib2 import Request, urlopen, URLError |
| 364 | req = Request(someurl) |
| 365 | try: |
| 366 | response = urlopen(req) |
Andrew Svetlov | 1625d88 | 2012-10-30 21:56:43 +0200 | [diff] [blame] | 367 | except URLError as e: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 368 | if hasattr(e, 'reason'): |
| 369 | print 'We failed to reach a server.' |
| 370 | print 'Reason: ', e.reason |
| 371 | elif hasattr(e, 'code'): |
| 372 | print 'The server couldn\'t fulfill the request.' |
| 373 | print 'Error code: ', e.code |
| 374 | else: |
| 375 | # everything is fine |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 376 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 377 | |
| 378 | info and geturl |
| 379 | =============== |
| 380 | |
Andrew M. Kuchling | db74c8a | 2008-09-30 13:00:51 +0000 | [diff] [blame] | 381 | The response returned by urlopen (or the :exc:`HTTPError` instance) has two useful |
| 382 | methods :meth:`info` and :meth:`geturl`. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 383 | |
| 384 | **geturl** - this returns the real URL of the page fetched. This is useful |
| 385 | because ``urlopen`` (or the opener object used) may have followed a |
| 386 | redirect. The URL of the page fetched may not be the same as the URL requested. |
| 387 | |
| 388 | **info** - this returns a dictionary-like object that describes the page |
| 389 | fetched, particularly the headers sent by the server. It is currently an |
| 390 | ``httplib.HTTPMessage`` instance. |
| 391 | |
| 392 | Typical headers include 'Content-length', 'Content-type', and so on. See the |
Serhiy Storchaka | b4905ef | 2016-05-07 10:50:12 +0300 | [diff] [blame] | 393 | `Quick Reference to HTTP Headers <https://www.cs.tut.fi/~jkorpela/http.html>`_ |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 394 | for a useful listing of HTTP headers with brief explanations of their meaning |
| 395 | and use. |
| 396 | |
| 397 | |
| 398 | Openers and Handlers |
| 399 | ==================== |
| 400 | |
| 401 | When you fetch a URL you use an opener (an instance of the perhaps |
| 402 | confusingly-named :class:`urllib2.OpenerDirector`). Normally we have been using |
| 403 | the default opener - via ``urlopen`` - but you can create custom |
| 404 | openers. Openers use handlers. All the "heavy lifting" is done by the |
| 405 | handlers. Each handler knows how to open URLs for a particular URL scheme (http, |
| 406 | ftp, etc.), or how to handle an aspect of URL opening, for example HTTP |
| 407 | redirections or HTTP cookies. |
| 408 | |
| 409 | You will want to create openers if you want to fetch URLs with specific handlers |
| 410 | installed, for example to get an opener that handles cookies, or to get an |
| 411 | opener that does not handle redirections. |
| 412 | |
| 413 | To create an opener, instantiate an ``OpenerDirector``, and then call |
| 414 | ``.add_handler(some_handler_instance)`` repeatedly. |
| 415 | |
| 416 | Alternatively, you can use ``build_opener``, which is a convenience function for |
| 417 | creating opener objects with a single function call. ``build_opener`` adds |
| 418 | several handlers by default, but provides a quick way to add more and/or |
| 419 | override the default handlers. |
| 420 | |
| 421 | Other sorts of handlers you might want to can handle proxies, authentication, |
| 422 | and other common but slightly specialised situations. |
| 423 | |
| 424 | ``install_opener`` can be used to make an ``opener`` object the (global) default |
| 425 | opener. This means that calls to ``urlopen`` will use the opener you have |
| 426 | installed. |
| 427 | |
| 428 | Opener objects have an ``open`` method, which can be called directly to fetch |
| 429 | urls in the same way as the ``urlopen`` function: there's no need to call |
| 430 | ``install_opener``, except as a convenience. |
| 431 | |
| 432 | |
| 433 | Basic Authentication |
| 434 | ==================== |
| 435 | |
| 436 | To illustrate creating and installing a handler we will use the |
| 437 | ``HTTPBasicAuthHandler``. For a more detailed discussion of this subject -- |
| 438 | including an explanation of how Basic Authentication works - see the `Basic |
| 439 | Authentication Tutorial |
| 440 | <http://www.voidspace.org.uk/python/articles/authentication.shtml>`_. |
| 441 | |
| 442 | When authentication is required, the server sends a header (as well as the 401 |
| 443 | error code) requesting authentication. This specifies the authentication scheme |
Serhiy Storchaka | b712873 | 2013-12-24 11:04:06 +0200 | [diff] [blame] | 444 | and a 'realm'. The header looks like: ``WWW-Authenticate: SCHEME |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 445 | realm="REALM"``. |
| 446 | |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 447 | e.g. :: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 448 | |
Sandro Tosi | 45c6a3c | 2012-04-24 17:36:14 +0200 | [diff] [blame] | 449 | WWW-Authenticate: Basic realm="cPanel Users" |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 450 | |
| 451 | |
| 452 | The client should then retry the request with the appropriate name and password |
| 453 | for the realm included as a header in the request. This is 'basic |
| 454 | authentication'. In order to simplify this process we can create an instance of |
| 455 | ``HTTPBasicAuthHandler`` and an opener to use this handler. |
| 456 | |
| 457 | The ``HTTPBasicAuthHandler`` uses an object called a password manager to handle |
| 458 | the mapping of URLs and realms to passwords and usernames. If you know what the |
| 459 | realm is (from the authentication header sent by the server), then you can use a |
| 460 | ``HTTPPasswordMgr``. Frequently one doesn't care what the realm is. In that |
| 461 | case, it is convenient to use ``HTTPPasswordMgrWithDefaultRealm``. This allows |
| 462 | you to specify a default username and password for a URL. This will be supplied |
| 463 | in the absence of you providing an alternative combination for a specific |
| 464 | realm. We indicate this by providing ``None`` as the realm argument to the |
| 465 | ``add_password`` method. |
| 466 | |
| 467 | The top-level URL is the first URL that requires authentication. URLs "deeper" |
| 468 | than the URL you pass to .add_password() will also match. :: |
| 469 | |
| 470 | # create a password manager |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 471 | password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 472 | |
| 473 | # Add the username and password. |
Georg Brandl | fc29f27 | 2009-01-02 20:25:14 +0000 | [diff] [blame] | 474 | # If we knew the realm, we could use it instead of None. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 475 | top_level_url = "http://example.com/foo/" |
| 476 | password_mgr.add_password(None, top_level_url, username, password) |
| 477 | |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 478 | handler = urllib2.HTTPBasicAuthHandler(password_mgr) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 479 | |
| 480 | # create "opener" (OpenerDirector instance) |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 481 | opener = urllib2.build_opener(handler) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 482 | |
| 483 | # use the opener to fetch a URL |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 484 | opener.open(a_url) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 485 | |
| 486 | # Install the opener. |
| 487 | # Now all calls to urllib2.urlopen use our opener. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 488 | urllib2.install_opener(opener) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 489 | |
| 490 | .. note:: |
| 491 | |
Ezio Melotti | dd89705 | 2009-07-21 20:18:27 +0000 | [diff] [blame] | 492 | In the above example we only supplied our ``HTTPBasicAuthHandler`` to |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 493 | ``build_opener``. By default openers have the handlers for normal situations |
R David Murray | 806c1c9 | 2013-04-28 11:16:21 -0400 | [diff] [blame] | 494 | -- ``ProxyHandler`` (if a proxy setting such as an :envvar:`http_proxy` |
| 495 | environment variable is set), ``UnknownHandler``, ``HTTPHandler``, |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 496 | ``HTTPDefaultErrorHandler``, ``HTTPRedirectHandler``, ``FTPHandler``, |
R David Murray | fc45ce8 | 2013-04-28 17:04:53 -0400 | [diff] [blame] | 497 | ``FileHandler``, ``HTTPErrorProcessor``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 498 | |
| 499 | ``top_level_url`` is in fact *either* a full URL (including the 'http:' scheme |
| 500 | component and the hostname and optionally the port number) |
| 501 | e.g. "http://example.com/" *or* an "authority" (i.e. the hostname, |
| 502 | optionally including the port number) e.g. "example.com" or "example.com:8080" |
| 503 | (the latter example includes a port number). The authority, if present, must |
Senthil Kumaran | 9c61f2e | 2016-02-05 19:35:57 -0800 | [diff] [blame] | 504 | NOT contain the "userinfo" component - for example "joe:password@example.com" is |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 505 | not correct. |
| 506 | |
| 507 | |
| 508 | Proxies |
| 509 | ======= |
| 510 | |
| 511 | **urllib2** will auto-detect your proxy settings and use those. This is through |
R David Murray | 806c1c9 | 2013-04-28 11:16:21 -0400 | [diff] [blame] | 512 | the ``ProxyHandler``, which is part of the normal handler chain when a proxy |
R David Murray | 6596041 | 2013-04-28 11:20:46 -0400 | [diff] [blame] | 513 | setting is detected. Normally that's a good thing, but there are occasions |
| 514 | when it may not be helpful [#]_. One way to do this is to setup our own |
| 515 | ``ProxyHandler``, with no proxies defined. This is done using similar steps to |
Serhiy Storchaka | b712873 | 2013-12-24 11:04:06 +0200 | [diff] [blame] | 516 | setting up a `Basic Authentication`_ handler: :: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 517 | |
| 518 | >>> proxy_support = urllib2.ProxyHandler({}) |
| 519 | >>> opener = urllib2.build_opener(proxy_support) |
| 520 | >>> urllib2.install_opener(opener) |
| 521 | |
| 522 | .. note:: |
| 523 | |
| 524 | Currently ``urllib2`` *does not* support fetching of ``https`` locations |
| 525 | through a proxy. However, this can be enabled by extending urllib2 as |
| 526 | shown in the recipe [#]_. |
| 527 | |
Senthil Kumaran | 75d7b61 | 2016-07-30 05:49:53 -0700 | [diff] [blame] | 528 | .. note:: |
| 529 | |
| 530 | ``HTTP_PROXY`` will be ignored if a variable ``REQUEST_METHOD`` is set; see |
| 531 | the documentation on :func:`~urllib.getproxies`. |
| 532 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 533 | |
| 534 | Sockets and Layers |
| 535 | ================== |
| 536 | |
| 537 | The Python support for fetching resources from the web is layered. urllib2 uses |
| 538 | the httplib library, which in turn uses the socket library. |
| 539 | |
| 540 | As of Python 2.3 you can specify how long a socket should wait for a response |
| 541 | before timing out. This can be useful in applications which have to fetch web |
| 542 | pages. By default the socket module has *no timeout* and can hang. Currently, |
| 543 | the socket timeout is not exposed at the httplib or urllib2 levels. However, |
| 544 | you can set the default timeout globally for all sockets using :: |
| 545 | |
| 546 | import socket |
| 547 | import urllib2 |
| 548 | |
| 549 | # timeout in seconds |
| 550 | timeout = 10 |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 551 | socket.setdefaulttimeout(timeout) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 552 | |
| 553 | # this call to urllib2.urlopen now uses the default timeout |
| 554 | # we have set in the socket module |
| 555 | req = urllib2.Request('http://www.voidspace.org.uk') |
| 556 | response = urllib2.urlopen(req) |
| 557 | |
| 558 | |
| 559 | ------- |
| 560 | |
| 561 | |
| 562 | Footnotes |
| 563 | ========= |
| 564 | |
| 565 | This document was reviewed and revised by John Lee. |
| 566 | |
| 567 | .. [#] For an introduction to the CGI protocol see |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 568 | `Writing Web Applications in Python <http://www.pyzine.com/Issue008/Section_Articles/article_CGIOne.html>`_. |
Benjamin Peterson | c717e08 | 2015-09-20 23:17:41 +0500 | [diff] [blame] | 569 | .. [#] Google for example. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 570 | .. [#] Browser sniffing is a very bad practise for website design - building |
| 571 | sites using web standards is much more sensible. Unfortunately a lot of |
| 572 | sites still send different versions to different browsers. |
| 573 | .. [#] The user agent for MSIE 6 is |
| 574 | *'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)'* |
| 575 | .. [#] For details of more HTTP request headers, see |
| 576 | `Quick Reference to HTTP Headers`_. |
| 577 | .. [#] In my case I have to use a proxy to access the internet at work. If you |
| 578 | attempt to fetch *localhost* URLs through this proxy it blocks them. IE |
| 579 | is set to use the proxy, which urllib2 picks up on. In order to test |
| 580 | scripts with a localhost server, I have to prevent urllib2 from using |
| 581 | the proxy. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 582 | .. [#] urllib2 opener for SSL proxy (CONNECT method): `ASPN Cookbook Recipe |
Serhiy Storchaka | b4905ef | 2016-05-07 10:50:12 +0300 | [diff] [blame] | 583 | <https://code.activestate.com/recipes/456195/>`_. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 584 | |