Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | :mod:`urllib` --- Open arbitrary resources by URL |
| 2 | ================================================= |
| 3 | |
| 4 | .. module:: urllib |
| 5 | :synopsis: Open an arbitrary network resource by URL (requires sockets). |
| 6 | |
| 7 | |
| 8 | .. index:: |
| 9 | single: WWW |
| 10 | single: World Wide Web |
| 11 | single: URL |
| 12 | |
| 13 | This module provides a high-level interface for fetching data across the World |
| 14 | Wide Web. In particular, the :func:`urlopen` function is similar to the |
| 15 | built-in function :func:`open`, but accepts Universal Resource Locators (URLs) |
| 16 | instead of filenames. Some restrictions apply --- it can only open URLs for |
| 17 | reading, and no seek operations are available. |
| 18 | |
Georg Brandl | 6264765 | 2008-01-07 18:23:27 +0000 | [diff] [blame^] | 19 | High-level interface |
| 20 | -------------------- |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 21 | |
| 22 | .. function:: urlopen(url[, data[, proxies]]) |
| 23 | |
| 24 | Open a network object denoted by a URL for reading. If the URL does not have a |
| 25 | scheme identifier, or if it has :file:`file:` as its scheme identifier, this |
| 26 | opens a local file (without universal newlines); otherwise it opens a socket to |
| 27 | a server somewhere on the network. If the connection cannot be made the |
| 28 | :exc:`IOError` exception is raised. If all went well, a file-like object is |
| 29 | returned. This supports the following methods: :meth:`read`, :meth:`readline`, |
| 30 | :meth:`readlines`, :meth:`fileno`, :meth:`close`, :meth:`info` and |
Georg Brandl | e7a0990 | 2007-10-21 12:10:28 +0000 | [diff] [blame] | 31 | :meth:`geturl`. It also has proper support for the :term:`iterator` protocol. One |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 32 | caveat: the :meth:`read` method, if the size argument is omitted or negative, |
| 33 | may not read until the end of the data stream; there is no good way to determine |
| 34 | that the entire stream from a socket has been read in the general case. |
| 35 | |
| 36 | Except for the :meth:`info` and :meth:`geturl` methods, these methods have the |
| 37 | same interface as for file objects --- see section :ref:`bltin-file-objects` in |
| 38 | this manual. (It is not a built-in file object, however, so it can't be used at |
| 39 | those few places where a true built-in file object is required.) |
| 40 | |
| 41 | .. index:: module: mimetools |
| 42 | |
| 43 | The :meth:`info` method returns an instance of the class |
| 44 | :class:`mimetools.Message` containing meta-information associated with the |
| 45 | URL. When the method is HTTP, these headers are those returned by the server |
| 46 | at the head of the retrieved HTML page (including Content-Length and |
| 47 | Content-Type). When the method is FTP, a Content-Length header will be |
| 48 | present if (as is now usual) the server passed back a file length in response |
| 49 | to the FTP retrieval request. A Content-Type header will be present if the |
| 50 | MIME type can be guessed. When the method is local-file, returned headers |
| 51 | will include a Date representing the file's last-modified time, a |
| 52 | Content-Length giving file size, and a Content-Type containing a guess at the |
| 53 | file's type. See also the description of the :mod:`mimetools` module. |
| 54 | |
| 55 | The :meth:`geturl` method returns the real URL of the page. In some cases, the |
| 56 | HTTP server redirects a client to another URL. The :func:`urlopen` function |
| 57 | handles this transparently, but in some cases the caller needs to know which URL |
| 58 | the client was redirected to. The :meth:`geturl` method can be used to get at |
| 59 | this redirected URL. |
| 60 | |
| 61 | If the *url* uses the :file:`http:` scheme identifier, the optional *data* |
| 62 | argument may be given to specify a ``POST`` request (normally the request type |
| 63 | is ``GET``). The *data* argument must be in standard |
| 64 | :mimetype:`application/x-www-form-urlencoded` format; see the :func:`urlencode` |
| 65 | function below. |
| 66 | |
| 67 | The :func:`urlopen` function works transparently with proxies which do not |
| 68 | require authentication. In a Unix or Windows environment, set the |
| 69 | :envvar:`http_proxy`, or :envvar:`ftp_proxy` environment variables to a URL that |
| 70 | identifies the proxy server before starting the Python interpreter. For example |
| 71 | (the ``'%'`` is the command prompt):: |
| 72 | |
| 73 | % http_proxy="http://www.someproxy.com:3128" |
| 74 | % export http_proxy |
| 75 | % python |
| 76 | ... |
| 77 | |
| 78 | In a Windows environment, if no proxy environment variables are set, proxy |
| 79 | settings are obtained from the registry's Internet Settings section. |
| 80 | |
| 81 | .. index:: single: Internet Config |
| 82 | |
| 83 | In a Macintosh environment, :func:`urlopen` will retrieve proxy information from |
| 84 | Internet Config. |
| 85 | |
| 86 | Alternatively, the optional *proxies* argument may be used to explicitly specify |
| 87 | proxies. It must be a dictionary mapping scheme names to proxy URLs, where an |
| 88 | empty dictionary causes no proxies to be used, and ``None`` (the default value) |
| 89 | causes environmental proxy settings to be used as discussed above. For |
| 90 | example:: |
| 91 | |
| 92 | # Use http://www.someproxy.com:3128 for http proxying |
| 93 | proxies = {'http': 'http://www.someproxy.com:3128'} |
| 94 | filehandle = urllib.urlopen(some_url, proxies=proxies) |
| 95 | # Don't use any proxies |
| 96 | filehandle = urllib.urlopen(some_url, proxies={}) |
| 97 | # Use proxies from environment - both versions are equivalent |
| 98 | filehandle = urllib.urlopen(some_url, proxies=None) |
| 99 | filehandle = urllib.urlopen(some_url) |
| 100 | |
| 101 | The :func:`urlopen` function does not support explicit proxy specification. If |
| 102 | you need to override environmental proxy settings, use :class:`URLopener`, or a |
| 103 | subclass such as :class:`FancyURLopener`. |
| 104 | |
| 105 | Proxies which require authentication for use are not currently supported; this |
| 106 | is considered an implementation limitation. |
| 107 | |
| 108 | .. versionchanged:: 2.3 |
| 109 | Added the *proxies* support. |
| 110 | |
| 111 | |
| 112 | .. function:: urlretrieve(url[, filename[, reporthook[, data]]]) |
| 113 | |
| 114 | Copy a network object denoted by a URL to a local file, if necessary. If the URL |
| 115 | points to a local file, or a valid cached copy of the object exists, the object |
| 116 | is not copied. Return a tuple ``(filename, headers)`` where *filename* is the |
| 117 | local file name under which the object can be found, and *headers* is whatever |
| 118 | the :meth:`info` method of the object returned by :func:`urlopen` returned (for |
| 119 | a remote object, possibly cached). Exceptions are the same as for |
| 120 | :func:`urlopen`. |
| 121 | |
| 122 | The second argument, if present, specifies the file location to copy to (if |
| 123 | absent, the location will be a tempfile with a generated name). The third |
| 124 | argument, if present, is a hook function that will be called once on |
| 125 | establishment of the network connection and once after each block read |
| 126 | thereafter. The hook will be passed three arguments; a count of blocks |
| 127 | transferred so far, a block size in bytes, and the total size of the file. The |
| 128 | third argument may be ``-1`` on older FTP servers which do not return a file |
| 129 | size in response to a retrieval request. |
| 130 | |
| 131 | If the *url* uses the :file:`http:` scheme identifier, the optional *data* |
| 132 | argument may be given to specify a ``POST`` request (normally the request type |
| 133 | is ``GET``). The *data* argument must in standard |
| 134 | :mimetype:`application/x-www-form-urlencoded` format; see the :func:`urlencode` |
| 135 | function below. |
| 136 | |
| 137 | .. versionchanged:: 2.5 |
| 138 | :func:`urlretrieve` will raise :exc:`ContentTooShortError` when it detects that |
| 139 | the amount of data available was less than the expected amount (which is the |
| 140 | size reported by a *Content-Length* header). This can occur, for example, when |
| 141 | the download is interrupted. |
| 142 | |
| 143 | The *Content-Length* is treated as a lower bound: if there's more data to read, |
| 144 | urlretrieve reads more data, but if less data is available, it raises the |
| 145 | exception. |
| 146 | |
| 147 | You can still retrieve the downloaded data in this case, it is stored in the |
| 148 | :attr:`content` attribute of the exception instance. |
| 149 | |
| 150 | If no *Content-Length* header was supplied, urlretrieve can not check the size |
| 151 | of the data it has downloaded, and just returns it. In this case you just have |
| 152 | to assume that the download was successful. |
| 153 | |
| 154 | |
| 155 | .. data:: _urlopener |
| 156 | |
| 157 | The public functions :func:`urlopen` and :func:`urlretrieve` create an instance |
| 158 | of the :class:`FancyURLopener` class and use it to perform their requested |
| 159 | actions. To override this functionality, programmers can create a subclass of |
| 160 | :class:`URLopener` or :class:`FancyURLopener`, then assign an instance of that |
| 161 | class to the ``urllib._urlopener`` variable before calling the desired function. |
| 162 | For example, applications may want to specify a different |
| 163 | :mailheader:`User-Agent` header than :class:`URLopener` defines. This can be |
| 164 | accomplished with the following code:: |
| 165 | |
| 166 | import urllib |
| 167 | |
| 168 | class AppURLopener(urllib.FancyURLopener): |
| 169 | version = "App/1.7" |
| 170 | |
| 171 | urllib._urlopener = AppURLopener() |
| 172 | |
| 173 | |
| 174 | .. function:: urlcleanup() |
| 175 | |
| 176 | Clear the cache that may have been built up by previous calls to |
| 177 | :func:`urlretrieve`. |
| 178 | |
| 179 | |
Georg Brandl | 6264765 | 2008-01-07 18:23:27 +0000 | [diff] [blame^] | 180 | Utility functions |
| 181 | ----------------- |
| 182 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 183 | .. function:: quote(string[, safe]) |
| 184 | |
| 185 | Replace special characters in *string* using the ``%xx`` escape. Letters, |
| 186 | digits, and the characters ``'_.-'`` are never quoted. The optional *safe* |
| 187 | parameter specifies additional characters that should not be quoted --- its |
| 188 | default value is ``'/'``. |
| 189 | |
| 190 | Example: ``quote('/~connolly/')`` yields ``'/%7econnolly/'``. |
| 191 | |
| 192 | |
| 193 | .. function:: quote_plus(string[, safe]) |
| 194 | |
| 195 | Like :func:`quote`, but also replaces spaces by plus signs, as required for |
| 196 | quoting HTML form values. Plus signs in the original string are escaped unless |
| 197 | they are included in *safe*. It also does not have *safe* default to ``'/'``. |
| 198 | |
| 199 | |
| 200 | .. function:: unquote(string) |
| 201 | |
| 202 | Replace ``%xx`` escapes by their single-character equivalent. |
| 203 | |
| 204 | Example: ``unquote('/%7Econnolly/')`` yields ``'/~connolly/'``. |
| 205 | |
| 206 | |
| 207 | .. function:: unquote_plus(string) |
| 208 | |
| 209 | Like :func:`unquote`, but also replaces plus signs by spaces, as required for |
| 210 | unquoting HTML form values. |
| 211 | |
| 212 | |
| 213 | .. function:: urlencode(query[, doseq]) |
| 214 | |
| 215 | Convert a mapping object or a sequence of two-element tuples to a "url-encoded" |
| 216 | string, suitable to pass to :func:`urlopen` above as the optional *data* |
| 217 | argument. This is useful to pass a dictionary of form fields to a ``POST`` |
| 218 | request. The resulting string is a series of ``key=value`` pairs separated by |
| 219 | ``'&'`` characters, where both *key* and *value* are quoted using |
| 220 | :func:`quote_plus` above. If the optional parameter *doseq* is present and |
| 221 | evaluates to true, individual ``key=value`` pairs are generated for each element |
| 222 | of the sequence. When a sequence of two-element tuples is used as the *query* |
| 223 | argument, the first element of each tuple is a key and the second is a value. |
| 224 | The order of parameters in the encoded string will match the order of parameter |
| 225 | tuples in the sequence. The :mod:`cgi` module provides the functions |
| 226 | :func:`parse_qs` and :func:`parse_qsl` which are used to parse query strings |
| 227 | into Python data structures. |
| 228 | |
| 229 | |
| 230 | .. function:: pathname2url(path) |
| 231 | |
| 232 | Convert the pathname *path* from the local syntax for a path to the form used in |
| 233 | the path component of a URL. This does not produce a complete URL. The return |
| 234 | value will already be quoted using the :func:`quote` function. |
| 235 | |
| 236 | |
| 237 | .. function:: url2pathname(path) |
| 238 | |
| 239 | Convert the path component *path* from an encoded URL to the local syntax for a |
| 240 | path. This does not accept a complete URL. This function uses :func:`unquote` |
| 241 | to decode *path*. |
| 242 | |
| 243 | |
Georg Brandl | 6264765 | 2008-01-07 18:23:27 +0000 | [diff] [blame^] | 244 | URL Opener objects |
| 245 | ------------------ |
| 246 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 247 | .. class:: URLopener([proxies[, **x509]]) |
| 248 | |
| 249 | Base class for opening and reading URLs. Unless you need to support opening |
| 250 | objects using schemes other than :file:`http:`, :file:`ftp:`, or :file:`file:`, |
| 251 | you probably want to use :class:`FancyURLopener`. |
| 252 | |
| 253 | By default, the :class:`URLopener` class sends a :mailheader:`User-Agent` header |
| 254 | of ``urllib/VVV``, where *VVV* is the :mod:`urllib` version number. |
| 255 | Applications can define their own :mailheader:`User-Agent` header by subclassing |
| 256 | :class:`URLopener` or :class:`FancyURLopener` and setting the class attribute |
| 257 | :attr:`version` to an appropriate string value in the subclass definition. |
| 258 | |
| 259 | The optional *proxies* parameter should be a dictionary mapping scheme names to |
| 260 | proxy URLs, where an empty dictionary turns proxies off completely. Its default |
| 261 | value is ``None``, in which case environmental proxy settings will be used if |
| 262 | present, as discussed in the definition of :func:`urlopen`, above. |
| 263 | |
| 264 | Additional keyword parameters, collected in *x509*, may be used for |
| 265 | authentication of the client when using the :file:`https:` scheme. The keywords |
| 266 | *key_file* and *cert_file* are supported to provide an SSL key and certificate; |
| 267 | both are needed to support client authentication. |
| 268 | |
| 269 | :class:`URLopener` objects will raise an :exc:`IOError` exception if the server |
| 270 | returns an error code. |
| 271 | |
Georg Brandl | 6264765 | 2008-01-07 18:23:27 +0000 | [diff] [blame^] | 272 | .. method:: open(fullurl[, data]) |
| 273 | |
| 274 | Open *fullurl* using the appropriate protocol. This method sets up cache and |
| 275 | proxy information, then calls the appropriate open method with its input |
| 276 | arguments. If the scheme is not recognized, :meth:`open_unknown` is called. |
| 277 | The *data* argument has the same meaning as the *data* argument of |
| 278 | :func:`urlopen`. |
| 279 | |
| 280 | |
| 281 | .. method:: open_unknown(fullurl[, data]) |
| 282 | |
| 283 | Overridable interface to open unknown URL types. |
| 284 | |
| 285 | |
| 286 | .. method:: retrieve(url[, filename[, reporthook[, data]]]) |
| 287 | |
| 288 | Retrieves the contents of *url* and places it in *filename*. The return value |
| 289 | is a tuple consisting of a local filename and either a |
| 290 | :class:`mimetools.Message` object containing the response headers (for remote |
| 291 | URLs) or ``None`` (for local URLs). The caller must then open and read the |
| 292 | contents of *filename*. If *filename* is not given and the URL refers to a |
| 293 | local file, the input filename is returned. If the URL is non-local and |
| 294 | *filename* is not given, the filename is the output of :func:`tempfile.mktemp` |
| 295 | with a suffix that matches the suffix of the last path component of the input |
| 296 | URL. If *reporthook* is given, it must be a function accepting three numeric |
| 297 | parameters. It will be called after each chunk of data is read from the |
| 298 | network. *reporthook* is ignored for local URLs. |
| 299 | |
| 300 | If the *url* uses the :file:`http:` scheme identifier, the optional *data* |
| 301 | argument may be given to specify a ``POST`` request (normally the request type |
| 302 | is ``GET``). The *data* argument must in standard |
| 303 | :mimetype:`application/x-www-form-urlencoded` format; see the :func:`urlencode` |
| 304 | function below. |
| 305 | |
| 306 | |
| 307 | .. attribute:: version |
| 308 | |
| 309 | Variable that specifies the user agent of the opener object. To get |
| 310 | :mod:`urllib` to tell servers that it is a particular user agent, set this in a |
| 311 | subclass as a class variable or in the constructor before calling the base |
| 312 | constructor. |
| 313 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 314 | |
| 315 | .. class:: FancyURLopener(...) |
| 316 | |
| 317 | :class:`FancyURLopener` subclasses :class:`URLopener` providing default handling |
| 318 | for the following HTTP response codes: 301, 302, 303, 307 and 401. For the 30x |
| 319 | response codes listed above, the :mailheader:`Location` header is used to fetch |
| 320 | the actual URL. For 401 response codes (authentication required), basic HTTP |
| 321 | authentication is performed. For the 30x response codes, recursion is bounded |
| 322 | by the value of the *maxtries* attribute, which defaults to 10. |
| 323 | |
| 324 | For all other response codes, the method :meth:`http_error_default` is called |
| 325 | which you can override in subclasses to handle the error appropriately. |
| 326 | |
| 327 | .. note:: |
| 328 | |
| 329 | According to the letter of :rfc:`2616`, 301 and 302 responses to POST requests |
| 330 | must not be automatically redirected without confirmation by the user. In |
| 331 | reality, browsers do allow automatic redirection of these responses, changing |
| 332 | the POST to a GET, and :mod:`urllib` reproduces this behaviour. |
| 333 | |
| 334 | The parameters to the constructor are the same as those for :class:`URLopener`. |
| 335 | |
| 336 | .. note:: |
| 337 | |
| 338 | When performing basic authentication, a :class:`FancyURLopener` instance calls |
| 339 | its :meth:`prompt_user_passwd` method. The default implementation asks the |
| 340 | users for the required information on the controlling terminal. A subclass may |
| 341 | override this method to support more appropriate behavior if needed. |
| 342 | |
Georg Brandl | 6264765 | 2008-01-07 18:23:27 +0000 | [diff] [blame^] | 343 | The :class:`FancyURLopener` class offers one additional method that should be |
| 344 | overloaded to provide the appropriate behavior: |
| 345 | |
| 346 | .. method:: prompt_user_passwd(host, realm) |
| 347 | |
| 348 | Return information needed to authenticate the user at the given host in the |
| 349 | specified security realm. The return value should be a tuple, ``(user, |
| 350 | password)``, which can be used for basic authentication. |
| 351 | |
| 352 | The implementation prompts for this information on the terminal; an application |
| 353 | should override this method to use an appropriate interaction model in the local |
| 354 | environment. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 355 | |
| 356 | .. exception:: ContentTooShortError(msg[, content]) |
| 357 | |
| 358 | This exception is raised when the :func:`urlretrieve` function detects that the |
| 359 | amount of the downloaded data is less than the expected amount (given by the |
| 360 | *Content-Length* header). The :attr:`content` attribute stores the downloaded |
| 361 | (and supposedly truncated) data. |
| 362 | |
| 363 | .. versionadded:: 2.5 |
| 364 | |
Georg Brandl | 6264765 | 2008-01-07 18:23:27 +0000 | [diff] [blame^] | 365 | |
| 366 | :mod:`urllib` Restrictions |
| 367 | -------------------------- |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 368 | |
| 369 | .. index:: |
| 370 | pair: HTTP; protocol |
| 371 | pair: FTP; protocol |
| 372 | |
| 373 | * Currently, only the following protocols are supported: HTTP, (versions 0.9 and |
| 374 | 1.0), FTP, and local files. |
| 375 | |
| 376 | * The caching feature of :func:`urlretrieve` has been disabled until I find the |
| 377 | time to hack proper processing of Expiration time headers. |
| 378 | |
| 379 | * There should be a function to query whether a particular URL is in the cache. |
| 380 | |
| 381 | * For backward compatibility, if a URL appears to point to a local file but the |
| 382 | file can't be opened, the URL is re-interpreted using the FTP protocol. This |
| 383 | can sometimes cause confusing error messages. |
| 384 | |
| 385 | * The :func:`urlopen` and :func:`urlretrieve` functions can cause arbitrarily |
| 386 | long delays while waiting for a network connection to be set up. This means |
| 387 | that it is difficult to build an interactive Web client using these functions |
| 388 | without using threads. |
| 389 | |
| 390 | .. index:: |
| 391 | single: HTML |
| 392 | pair: HTTP; protocol |
| 393 | module: htmllib |
| 394 | |
| 395 | * The data returned by :func:`urlopen` or :func:`urlretrieve` is the raw data |
| 396 | returned by the server. This may be binary data (such as an image), plain text |
| 397 | or (for example) HTML. The HTTP protocol provides type information in the reply |
| 398 | header, which can be inspected by looking at the :mailheader:`Content-Type` |
| 399 | header. If the returned data is HTML, you can use the module :mod:`htmllib` to |
| 400 | parse it. |
| 401 | |
| 402 | .. index:: single: FTP |
| 403 | |
| 404 | * The code handling the FTP protocol cannot differentiate between a file and a |
| 405 | directory. This can lead to unexpected behavior when attempting to read a URL |
| 406 | that points to a file that is not accessible. If the URL ends in a ``/``, it is |
| 407 | assumed to refer to a directory and will be handled accordingly. But if an |
| 408 | attempt to read a file leads to a 550 error (meaning the URL cannot be found or |
| 409 | is not accessible, often for permission reasons), then the path is treated as a |
| 410 | directory in order to handle the case when a directory is specified by a URL but |
| 411 | the trailing ``/`` has been left off. This can cause misleading results when |
| 412 | you try to fetch a file whose read permissions make it inaccessible; the FTP |
| 413 | code will try to read it, fail with a 550 error, and then perform a directory |
| 414 | listing for the unreadable file. If fine-grained control is needed, consider |
| 415 | using the :mod:`ftplib` module, subclassing :class:`FancyURLOpener`, or changing |
| 416 | *_urlopener* to meet your needs. |
| 417 | |
| 418 | * This module does not support the use of proxies which require authentication. |
| 419 | This may be implemented in the future. |
| 420 | |
| 421 | .. index:: module: urlparse |
| 422 | |
| 423 | * Although the :mod:`urllib` module contains (undocumented) routines to parse |
| 424 | and unparse URL strings, the recommended interface for URL manipulation is in |
| 425 | module :mod:`urlparse`. |
| 426 | |
| 427 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 428 | .. _urllib-examples: |
| 429 | |
| 430 | Examples |
| 431 | -------- |
| 432 | |
| 433 | Here is an example session that uses the ``GET`` method to retrieve a URL |
| 434 | containing parameters:: |
| 435 | |
| 436 | >>> import urllib |
| 437 | >>> params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) |
| 438 | >>> f = urllib.urlopen("http://www.musi-cal.com/cgi-bin/query?%s" % params) |
| 439 | >>> print f.read() |
| 440 | |
| 441 | The following example uses the ``POST`` method instead:: |
| 442 | |
| 443 | >>> import urllib |
| 444 | >>> params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) |
| 445 | >>> f = urllib.urlopen("http://www.musi-cal.com/cgi-bin/query", params) |
| 446 | >>> print f.read() |
| 447 | |
| 448 | The following example uses an explicitly specified HTTP proxy, overriding |
| 449 | environment settings:: |
| 450 | |
| 451 | >>> import urllib |
| 452 | >>> proxies = {'http': 'http://proxy.example.com:8080/'} |
| 453 | >>> opener = urllib.FancyURLopener(proxies) |
| 454 | >>> f = opener.open("http://www.python.org") |
| 455 | >>> f.read() |
| 456 | |
| 457 | The following example uses no proxies at all, overriding environment settings:: |
| 458 | |
| 459 | >>> import urllib |
| 460 | >>> opener = urllib.FancyURLopener({}) |
| 461 | >>> f = opener.open("http://www.python.org/") |
| 462 | >>> f.read() |
| 463 | |