Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{urllib} --- |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 2 | Open arbitrary resources by URL} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 4 | \declaremodule{standard}{urllib} |
| 5 | \modulesynopsis{Open an arbitrary network resource by URL (requires sockets).} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 7 | \index{WWW} |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 8 | \index{World Wide Web} |
Guido van Rossum | 61d34f4 | 1995-02-27 17:51:51 +0000 | [diff] [blame] | 9 | \index{URL} |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 10 | |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 11 | |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 12 | This module provides a high-level interface for fetching data across |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 13 | the World Wide Web. In particular, the \function{urlopen()} function |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 14 | is similar to the built-in function \function{open()}, but accepts |
| 15 | Universal Resource Locators (URLs) instead of filenames. Some |
| 16 | restrictions apply --- it can only open URLs for reading, and no seek |
| 17 | operations are available. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 18 | |
Fred Drake | f5eaa2e | 1997-12-15 22:13:50 +0000 | [diff] [blame] | 19 | It defines the following public functions: |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 20 | |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 21 | \begin{funcdesc}{urlopen}{url\optional{, data}} |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 22 | Open a network object denoted by a URL for reading. If the URL does |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 23 | not have a scheme identifier, or if it has \file{file:} as its scheme |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 24 | identifier, this opens a local file; otherwise it opens a socket to a |
| 25 | server somewhere on the network. If the connection cannot be made, or |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 26 | if the server returns an error code, the \exception{IOError} exception |
| 27 | is raised. If all went well, a file-like object is returned. This |
| 28 | supports the following methods: \method{read()}, \method{readline()}, |
Fred Drake | 1ec71cb | 1999-02-22 22:42:14 +0000 | [diff] [blame] | 29 | \method{readlines()}, \method{fileno()}, \method{close()}, |
| 30 | \method{info()} and \method{geturl()}. |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 31 | |
Fred Drake | 1ec71cb | 1999-02-22 22:42:14 +0000 | [diff] [blame] | 32 | Except for the \method{info()} and \method{geturl()} methods, |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 33 | these methods have the same interface as for |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 34 | file objects --- see section \ref{bltin-file-objects} in this |
| 35 | manual. (It is not a built-in file object, however, so it can't be |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 36 | used at those few places where a true built-in file object is |
| 37 | required.) |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 38 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 39 | The \method{info()} method returns an instance of the class |
Guido van Rossum | 954b9ad | 1998-09-28 14:08:29 +0000 | [diff] [blame] | 40 | \class{mimetools.Message} containing meta-information associated |
| 41 | with the URL. When the method is HTTP, these headers are those |
| 42 | returned by the server at the head of the retrieved HTML page |
| 43 | (including Content-Length and Content-Type). When the method is FTP, |
| 44 | a Content-Length header will be present if (as is now usual) the |
| 45 | server passed back a file length in response to the FTP retrieval |
Guido van Rossum | 88e0b5b | 2001-08-23 13:38:15 +0000 | [diff] [blame] | 46 | request. A Content-Type header will be present if the MIME type can |
| 47 | be guessed. When the method is local-file, returned headers will include |
Guido van Rossum | 954b9ad | 1998-09-28 14:08:29 +0000 | [diff] [blame] | 48 | a Date representing the file's last-modified time, a Content-Length |
| 49 | giving file size, and a Content-Type containing a guess at the file's |
| 50 | type. See also the description of the |
Fred Drake | 1ec71cb | 1999-02-22 22:42:14 +0000 | [diff] [blame] | 51 | \refmodule{mimetools}\refstmodindex{mimetools} module. |
| 52 | |
| 53 | The \method{geturl()} method returns the real URL of the page. In |
| 54 | some cases, the HTTP server redirects a client to another URL. The |
| 55 | \function{urlopen()} function handles this transparently, but in some |
| 56 | cases the caller needs to know which URL the client was redirected |
| 57 | to. The \method{geturl()} method can be used to get at this |
| 58 | redirected URL. |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 59 | |
| 60 | If the \var{url} uses the \file{http:} scheme identifier, the optional |
| 61 | \var{data} argument may be given to specify a \code{POST} request |
| 62 | (normally the request type is \code{GET}). The \var{data} argument |
Fred Drake | 5100133 | 2000-12-15 23:57:51 +0000 | [diff] [blame] | 63 | must in standard \mimetype{application/x-www-form-urlencoded} format; |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 64 | see the \function{urlencode()} function below. |
| 65 | |
Fred Drake | aef0e89 | 2000-08-31 17:23:35 +0000 | [diff] [blame] | 66 | The \function{urlopen()} function works transparently with proxies |
Fred Drake | 81c1735 | 2000-09-15 04:12:56 +0000 | [diff] [blame] | 67 | which do not require authentication. In a \UNIX{} or Windows |
Fred Drake | aef0e89 | 2000-08-31 17:23:35 +0000 | [diff] [blame] | 68 | environment, set the \envvar{http_proxy}, \envvar{ftp_proxy} or |
| 69 | \envvar{gopher_proxy} environment variables to a URL that identifies |
| 70 | the proxy server before starting the Python interpreter. For example |
| 71 | (the \character{\%} is the command prompt): |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 72 | |
| 73 | \begin{verbatim} |
| 74 | % http_proxy="http://www.someproxy.com:3128" |
| 75 | % export http_proxy |
| 76 | % python |
| 77 | ... |
| 78 | \end{verbatim} |
| 79 | |
| 80 | In a Macintosh environment, \function{urlopen()} will retrieve proxy |
| 81 | information from Internet\index{Internet Config} Config. |
| 82 | |
Fred Drake | aef0e89 | 2000-08-31 17:23:35 +0000 | [diff] [blame] | 83 | Proxies which require authentication for use are not currently |
| 84 | supported; this is considered an implementation limitation. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 85 | \end{funcdesc} |
| 86 | |
Fred Drake | 5100133 | 2000-12-15 23:57:51 +0000 | [diff] [blame] | 87 | \begin{funcdesc}{urlretrieve}{url\optional{, filename\optional{, |
| 88 | reporthook\optional{, data}}}} |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 89 | Copy a network object denoted by a URL to a local file, if necessary. |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 90 | If the URL points to a local file, or a valid cached copy of the |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 91 | object exists, the object is not copied. Return a tuple |
| 92 | \code{(\var{filename}, \var{headers})} where \var{filename} is the |
| 93 | local file name under which the object can be found, and \var{headers} |
| 94 | is either \code{None} (for a local object) or whatever the |
| 95 | \method{info()} method of the object returned by \function{urlopen()} |
| 96 | returned (for a remote object, possibly cached). Exceptions are the |
| 97 | same as for \function{urlopen()}. |
Guido van Rossum | 954b9ad | 1998-09-28 14:08:29 +0000 | [diff] [blame] | 98 | |
| 99 | The second argument, if present, specifies the file location to copy |
| 100 | to (if absent, the location will be a tempfile with a generated name). |
| 101 | The third argument, if present, is a hook function that will be called |
| 102 | once on establishment of the network connection and once after each |
| 103 | block read thereafter. The hook will be passed three arguments; a |
| 104 | count of blocks transferred so far, a block size in bytes, and the |
Fred Drake | 09b2957 | 1998-10-01 20:43:13 +0000 | [diff] [blame] | 105 | total size of the file. The third argument may be \code{-1} on older |
| 106 | FTP servers which do not return a file size in response to a retrieval |
Guido van Rossum | 954b9ad | 1998-09-28 14:08:29 +0000 | [diff] [blame] | 107 | request. |
Fred Drake | 9fa4d61 | 2000-08-24 01:06:40 +0000 | [diff] [blame] | 108 | |
| 109 | If the \var{url} uses the \file{http:} scheme identifier, the optional |
| 110 | \var{data} argument may be given to specify a \code{POST} request |
| 111 | (normally the request type is \code{GET}). The \var{data} argument |
Fred Drake | 5100133 | 2000-12-15 23:57:51 +0000 | [diff] [blame] | 112 | must in standard \mimetype{application/x-www-form-urlencoded} format; |
Fred Drake | 9fa4d61 | 2000-08-24 01:06:40 +0000 | [diff] [blame] | 113 | see the \function{urlencode()} function below. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 114 | \end{funcdesc} |
| 115 | |
| 116 | \begin{funcdesc}{urlcleanup}{} |
| 117 | Clear the cache that may have been built up by previous calls to |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 118 | \function{urlretrieve()}. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 119 | \end{funcdesc} |
| 120 | |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 121 | \begin{funcdesc}{quote}{string\optional{, safe}} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 122 | Replace special characters in \var{string} using the \samp{\%xx} escape. |
| 123 | Letters, digits, and the characters \character{_,.-} are never quoted. |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 124 | The optional \var{safe} parameter specifies additional characters |
Guido van Rossum | 61d34f4 | 1995-02-27 17:51:51 +0000 | [diff] [blame] | 125 | that should not be quoted --- its default value is \code{'/'}. |
| 126 | |
Fred Drake | 10853c9 | 2000-07-28 13:51:27 +0000 | [diff] [blame] | 127 | Example: \code{quote('/\~{}connolly/')} yields \code{'/\%7econnolly/'}. |
Guido van Rossum | 8d40c84 | 1996-12-13 14:48:47 +0000 | [diff] [blame] | 128 | \end{funcdesc} |
| 129 | |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 130 | \begin{funcdesc}{quote_plus}{string\optional{, safe}} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 131 | Like \function{quote()}, but also replaces spaces by plus signs, as |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 132 | required for quoting HTML form values. Plus signs in the original |
| 133 | string are escaped unless they are included in \var{safe}. |
Guido van Rossum | 61d34f4 | 1995-02-27 17:51:51 +0000 | [diff] [blame] | 134 | \end{funcdesc} |
| 135 | |
| 136 | \begin{funcdesc}{unquote}{string} |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 137 | Replace \samp{\%xx} escapes by their single-character equivalent. |
Guido van Rossum | 61d34f4 | 1995-02-27 17:51:51 +0000 | [diff] [blame] | 138 | |
Fred Drake | 10853c9 | 2000-07-28 13:51:27 +0000 | [diff] [blame] | 139 | Example: \code{unquote('/\%7Econnolly/')} yields \code{'/\~{}connolly/'}. |
Guido van Rossum | 61d34f4 | 1995-02-27 17:51:51 +0000 | [diff] [blame] | 140 | \end{funcdesc} |
| 141 | |
Guido van Rossum | 8d40c84 | 1996-12-13 14:48:47 +0000 | [diff] [blame] | 142 | \begin{funcdesc}{unquote_plus}{string} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 143 | Like \function{unquote()}, but also replaces plus signs by spaces, as |
Guido van Rossum | 8d40c84 | 1996-12-13 14:48:47 +0000 | [diff] [blame] | 144 | required for unquoting HTML form values. |
| 145 | \end{funcdesc} |
| 146 | |
Skip Montanaro | 4fda21b | 2001-01-28 21:18:16 +0000 | [diff] [blame] | 147 | \begin{funcdesc}{urlencode}{query\optional{, doseq}} |
| 148 | Convert a mapping object or a sequence of two-element tuples to a |
| 149 | ``url-encoded'' string, suitable to pass to |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 150 | \function{urlopen()} above as the optional \var{data} argument. This |
| 151 | is useful to pass a dictionary of form fields to a \code{POST} |
Fred Drake | 09b2957 | 1998-10-01 20:43:13 +0000 | [diff] [blame] | 152 | request. The resulting string is a series of |
| 153 | \code{\var{key}=\var{value}} pairs separated by \character{\&} |
| 154 | characters, where both \var{key} and \var{value} are quoted using |
Skip Montanaro | eda2844 | 2001-01-24 06:36:06 +0000 | [diff] [blame] | 155 | \function{quote_plus()} above. If the optional parameter \var{doseq} is |
| 156 | present and evaluates to true, individual \code{\var{key}=\var{value}} pairs |
| 157 | are generated for each element of the sequence. |
Skip Montanaro | 4fda21b | 2001-01-28 21:18:16 +0000 | [diff] [blame] | 158 | When a sequence of two-element tuples is used as the \var{query} argument, |
| 159 | the first element of each tuple is a key and the second is a value. The |
| 160 | order of parameters in the encoded string will match the order of parameter |
| 161 | tuples in the sequence. |
Guido van Rossum | 0af2f63 | 1998-07-22 21:34:21 +0000 | [diff] [blame] | 162 | \end{funcdesc} |
| 163 | |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 164 | The public functions \function{urlopen()} and |
| 165 | \function{urlretrieve()} create an instance of the |
| 166 | \class{FancyURLopener} class and use it to perform their requested |
| 167 | actions. To override this functionality, programmers can create a |
| 168 | subclass of \class{URLopener} or \class{FancyURLopener}, then assign |
| 169 | that an instance of that class to the |
| 170 | \code{urllib._urlopener} variable before calling the desired function. |
| 171 | For example, applications may want to specify a different |
Fred Drake | d86038d | 2001-08-03 18:39:36 +0000 | [diff] [blame] | 172 | \mailheader{User-Agent} header than \class{URLopener} defines. This |
| 173 | can be accomplished with the following code: |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 174 | |
| 175 | \begin{verbatim} |
| 176 | class AppURLopener(urllib.FancyURLopener): |
| 177 | def __init__(self, *args): |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 178 | self.version = "App/1.7" |
Fred Drake | 63bc2e0 | 2001-07-23 19:16:22 +0000 | [diff] [blame] | 179 | urllib.FancyURLopener.__init__(self, *args) |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 180 | |
Fred Drake | 6c16019 | 2000-05-30 14:39:45 +0000 | [diff] [blame] | 181 | urllib._urlopener = AppURLopener() |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 182 | \end{verbatim} |
| 183 | |
| 184 | \begin{classdesc}{URLopener}{\optional{proxies\optional{, **x509}}} |
| 185 | Base class for opening and reading URLs. Unless you need to support |
| 186 | opening objects using schemes other than \file{http:}, \file{ftp:}, |
| 187 | \file{gopher:} or \file{file:}, you probably want to use |
| 188 | \class{FancyURLopener}. |
| 189 | |
| 190 | By default, the \class{URLopener} class sends a |
Fred Drake | d86038d | 2001-08-03 18:39:36 +0000 | [diff] [blame] | 191 | \mailheader{User-Agent} header of \samp{urllib/\var{VVV}}, where |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 192 | \var{VVV} is the \module{urllib} version number. Applications can |
Fred Drake | d86038d | 2001-08-03 18:39:36 +0000 | [diff] [blame] | 193 | define their own \mailheader{User-Agent} header by subclassing |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 194 | \class{URLopener} or \class{FancyURLopener} and setting the instance |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 195 | attribute \member{version} to an appropriate string value before the |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 196 | \method{open()} method is called. |
| 197 | |
| 198 | Additional keyword parameters, collected in \var{x509}, are used for |
| 199 | authentication with the \file{https:} scheme. The keywords |
| 200 | \var{key_file} and \var{cert_file} are supported; both are needed to |
| 201 | actually retrieve a resource at an \file{https:} URL. |
| 202 | \end{classdesc} |
| 203 | |
| 204 | \begin{classdesc}{FancyURLopener}{...} |
| 205 | \class{FancyURLopener} subclasses \class{URLopener} providing default |
| 206 | handling for the following HTTP response codes: 301, 302 or 401. For |
Fred Drake | d86038d | 2001-08-03 18:39:36 +0000 | [diff] [blame] | 207 | 301 and 302 response codes, the \mailheader{Location} header is used to |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 208 | fetch the actual URL. For 401 response codes (authentication |
Skip Montanaro | 04f1d37 | 2001-02-15 17:00:40 +0000 | [diff] [blame] | 209 | required), basic HTTP authentication is performed. For 301 and 302 response |
| 210 | codes, recursion is bounded by the value of the \var{maxtries} attribute, |
| 211 | which defaults 10. |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 212 | |
| 213 | The parameters to the constructor are the same as those for |
| 214 | \class{URLopener}. |
Fred Drake | 47f11ce | 2001-04-12 20:26:49 +0000 | [diff] [blame] | 215 | |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 216 | \note{When performing basic authentication, a |
Fred Drake | 47f11ce | 2001-04-12 20:26:49 +0000 | [diff] [blame] | 217 | \class{FancyURLopener} instance calls its |
| 218 | \method{prompt_user_passwd()} method. The default implementation asks |
| 219 | the users for the required information on the controlling terminal. A |
| 220 | subclass may override this method to support more appropriate behavior |
Fred Drake | 0aa811c | 2001-10-20 04:24:09 +0000 | [diff] [blame] | 221 | if needed.} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 222 | \end{classdesc} |
| 223 | |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 224 | Restrictions: |
| 225 | |
| 226 | \begin{itemize} |
| 227 | |
| 228 | \item |
| 229 | Currently, only the following protocols are supported: HTTP, (versions |
| 230 | 0.9 and 1.0), Gopher (but not Gopher-+), FTP, and local files. |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 231 | \indexii{HTTP}{protocol} |
| 232 | \indexii{Gopher}{protocol} |
| 233 | \indexii{FTP}{protocol} |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 234 | |
| 235 | \item |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 236 | The caching feature of \function{urlretrieve()} has been disabled |
| 237 | until I find the time to hack proper processing of Expiration time |
| 238 | headers. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 239 | |
| 240 | \item |
Guido van Rossum | 6c4f003 | 1995-03-07 10:14:09 +0000 | [diff] [blame] | 241 | There should be a function to query whether a particular URL is in |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 242 | the cache. |
| 243 | |
| 244 | \item |
| 245 | For backward compatibility, if a URL appears to point to a local file |
| 246 | but the file can't be opened, the URL is re-interpreted using the FTP |
| 247 | protocol. This can sometimes cause confusing error messages. |
| 248 | |
| 249 | \item |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 250 | The \function{urlopen()} and \function{urlretrieve()} functions can |
| 251 | cause arbitrarily long delays while waiting for a network connection |
| 252 | to be set up. This means that it is difficult to build an interactive |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 253 | Web client using these functions without using threads. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 254 | |
| 255 | \item |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 256 | The data returned by \function{urlopen()} or \function{urlretrieve()} |
| 257 | is the raw data returned by the server. This may be binary data |
Fred Drake | 1ec71cb | 1999-02-22 22:42:14 +0000 | [diff] [blame] | 258 | (e.g. an image), plain text or (for example) HTML\index{HTML}. The |
| 259 | HTTP\indexii{HTTP}{protocol} protocol provides type information in the |
| 260 | reply header, which can be inspected by looking at the |
Fred Drake | d86038d | 2001-08-03 18:39:36 +0000 | [diff] [blame] | 261 | \mailheader{Content-Type} header. For the |
| 262 | Gopher\indexii{Gopher}{protocol} protocol, type information is encoded |
| 263 | in the URL; there is currently no easy way to extract it. If the |
| 264 | returned data is HTML, you can use the module |
| 265 | \refmodule{htmllib}\refstmodindex{htmllib} to parse it. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 266 | |
| 267 | \item |
Fred Drake | 81c1735 | 2000-09-15 04:12:56 +0000 | [diff] [blame] | 268 | This module does not support the use of proxies which require |
| 269 | authentication. This may be implemented in the future. |
| 270 | |
| 271 | \item |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 272 | Although the \module{urllib} module contains (undocumented) routines |
| 273 | to parse and unparse URL strings, the recommended interface for URL |
Fred Drake | 1ec71cb | 1999-02-22 22:42:14 +0000 | [diff] [blame] | 274 | manipulation is in module \refmodule{urlparse}\refstmodindex{urlparse}. |
Guido van Rossum | a8db1df | 1995-02-16 16:29:46 +0000 | [diff] [blame] | 275 | |
| 276 | \end{itemize} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 277 | |
| 278 | |
| 279 | \subsection{URLopener Objects \label{urlopener-objs}} |
| 280 | \sectionauthor{Skip Montanaro}{skip@mojam.com} |
| 281 | |
| 282 | \class{URLopener} and \class{FancyURLopener} objects have the |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 283 | following attributes. |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 284 | |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 285 | \begin{methoddesc}[URLopener]{open}{fullurl\optional{, data}} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 286 | Open \var{fullurl} using the appropriate protocol. This method sets |
| 287 | up cache and proxy information, then calls the appropriate open method with |
| 288 | its input arguments. If the scheme is not recognized, |
| 289 | \method{open_unknown()} is called. The \var{data} argument |
| 290 | has the same meaning as the \var{data} argument of \function{urlopen()}. |
| 291 | \end{methoddesc} |
| 292 | |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 293 | \begin{methoddesc}[URLopener]{open_unknown}{fullurl\optional{, data}} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 294 | Overridable interface to open unknown URL types. |
| 295 | \end{methoddesc} |
| 296 | |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 297 | \begin{methoddesc}[URLopener]{retrieve}{url\optional{, |
| 298 | filename\optional{, |
| 299 | reporthook\optional{, data}}}} |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 300 | Retrieves the contents of \var{url} and places it in \var{filename}. The |
| 301 | return value is a tuple consisting of a local filename and either a |
| 302 | \class{mimetools.Message} object containing the response headers (for remote |
| 303 | URLs) or None (for local URLs). The caller must then open and read the |
| 304 | contents of \var{filename}. If \var{filename} is not given and the URL |
| 305 | refers to a local file, the input filename is returned. If the URL is |
| 306 | non-local and \var{filename} is not given, the filename is the output of |
| 307 | \function{tempfile.mktemp()} with a suffix that matches the suffix of the last |
| 308 | path component of the input URL. If \var{reporthook} is given, it must be |
| 309 | a function accepting three numeric parameters. It will be called after each |
| 310 | chunk of data is read from the network. \var{reporthook} is ignored for |
| 311 | local URLs. |
Fred Drake | 9fa4d61 | 2000-08-24 01:06:40 +0000 | [diff] [blame] | 312 | |
| 313 | If the \var{url} uses the \file{http:} scheme identifier, the optional |
| 314 | \var{data} argument may be given to specify a \code{POST} request |
| 315 | (normally the request type is \code{GET}). The \var{data} argument |
Fred Drake | 5100133 | 2000-12-15 23:57:51 +0000 | [diff] [blame] | 316 | must in standard \mimetype{application/x-www-form-urlencoded} format; |
Fred Drake | 9fa4d61 | 2000-08-24 01:06:40 +0000 | [diff] [blame] | 317 | see the \function{urlencode()} function below. |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 318 | \end{methoddesc} |
| 319 | |
Fred Drake | dfca4dc | 2000-08-25 05:13:42 +0000 | [diff] [blame] | 320 | \begin{memberdesc}[URLopener]{version} |
| 321 | Variable that specifies the user agent of the opener object. To get |
| 322 | \refmodule{urllib} to tell servers that it is a particular user agent, |
| 323 | set this in a subclass as a class variable or in the constructor |
| 324 | before calling the base constructor. |
| 325 | \end{memberdesc} |
| 326 | |
Fred Drake | 47f11ce | 2001-04-12 20:26:49 +0000 | [diff] [blame] | 327 | The \class{FancyURLopener} class offers one additional method that |
| 328 | should be overloaded to provide the appropriate behavior: |
| 329 | |
| 330 | \begin{methoddesc}[FancyURLopener]{prompt_user_passwd}{host, realm} |
| 331 | Return information needed to authenticate the user at the given host |
| 332 | in the specified security realm. The return value should be a tuple, |
| 333 | \code{(\var{user}, \var{password})}, which can be used for basic |
| 334 | authentication. |
| 335 | |
| 336 | The implementation prompts for this information on the terminal; an |
| 337 | application should override this method to use an appropriate |
| 338 | interaction model in the local environment. |
| 339 | \end{methoddesc} |
| 340 | |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 341 | |
| 342 | \subsection{Examples} |
| 343 | \nodename{Urllib Examples} |
| 344 | |
| 345 | Here is an example session that uses the \samp{GET} method to retrieve |
| 346 | a URL containing parameters: |
| 347 | |
| 348 | \begin{verbatim} |
| 349 | >>> import urllib |
| 350 | >>> params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) |
| 351 | >>> f = urllib.urlopen("http://www.musi-cal.com/cgi-bin/query?%s" % params) |
| 352 | >>> print f.read() |
| 353 | \end{verbatim} |
| 354 | |
| 355 | The following example uses the \samp{POST} method instead: |
| 356 | |
| 357 | \begin{verbatim} |
| 358 | >>> import urllib |
| 359 | >>> params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0}) |
| 360 | >>> f = urllib.urlopen("http://www.musi-cal.com/cgi-bin/query", params) |
| 361 | >>> print f.read() |
| 362 | \end{verbatim} |