2001-03-01 04:40:42 -04:00
|
|
|
\section{\module{urllib2} ---
|
|
|
|
extensible library for opening URLs}
|
|
|
|
|
|
|
|
\declaremodule{standard}{urllib2}
|
|
|
|
\moduleauthor{Jeremy Hylton}{jhylton@users.sourceforge.net}
|
|
|
|
\sectionauthor{Moshe Zadka}{moshez@users.sourceforge.net}
|
|
|
|
|
|
|
|
\modulesynopsis{An extensible library for opening URLs using a variety of
|
|
|
|
protocols}
|
|
|
|
|
|
|
|
The \module{urllib2} module defines functions and classes which help
|
2001-03-02 16:39:34 -04:00
|
|
|
in opening URLs (mostly HTTP) in a complex world --- basic and digest
|
2004-05-31 15:22:40 -03:00
|
|
|
authentication, redirections, cookies and more.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
The \module{urllib2} module defines the following functions:
|
|
|
|
|
|
|
|
\begin{funcdesc}{urlopen}{url\optional{, data}}
|
2001-11-08 23:49:29 -04:00
|
|
|
Open the URL \var{url}, which can be either a string or a \class{Request}
|
2004-05-31 15:22:40 -03:00
|
|
|
object.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2006-06-03 15:43:24 -03:00
|
|
|
\var{data} may be a string specifying additional data to send to the
|
2006-07-29 12:57:08 -03:00
|
|
|
server, or \code{None} if no such data is needed.
|
|
|
|
Currently HTTP requests are the only ones that use \var{data};
|
2006-06-03 15:43:24 -03:00
|
|
|
the HTTP request will be a POST instead of a GET when the \var{data}
|
|
|
|
parameter is provided. \var{data} should be a buffer in the standard
|
|
|
|
\mimetype{application/x-www-form-urlencoded} format. The
|
|
|
|
\function{urllib.urlencode()} function takes a mapping or sequence of
|
|
|
|
2-tuples and returns a string in this format.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
This function returns a file-like object with two additional methods:
|
|
|
|
|
|
|
|
\begin{itemize}
|
2001-03-02 16:39:34 -04:00
|
|
|
\item \method{geturl()} --- return the URL of the resource retrieved
|
|
|
|
\item \method{info()} --- return the meta-information of the page, as
|
|
|
|
a dictionary-like object
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
Raises \exception{URLError} on errors.
|
2004-07-10 23:13:17 -03:00
|
|
|
|
|
|
|
Note that \code{None} may be returned if no handler handles the
|
|
|
|
request (though the default installed global \class{OpenerDirector}
|
|
|
|
uses \class{UnknownHandler} to ensure this never happens).
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{install_opener}{opener}
|
2004-07-10 23:13:17 -03:00
|
|
|
Install an \class{OpenerDirector} instance as the default global
|
|
|
|
opener. Installing an opener is only necessary if you want urlopen to
|
|
|
|
use that opener; otherwise, simply call \method{OpenerDirector.open()}
|
|
|
|
instead of \function{urlopen()}. The code does not check for a real
|
|
|
|
\class{OpenerDirector}, and any class with the appropriate interface
|
|
|
|
will work.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{funcdesc}{build_opener}{\optional{handler, \moreargs}}
|
2001-03-01 04:40:42 -04:00
|
|
|
Return an \class{OpenerDirector} instance, which chains the
|
|
|
|
handlers in the order given. \var{handler}s can be either instances
|
|
|
|
of \class{BaseHandler}, or subclasses of \class{BaseHandler} (in
|
|
|
|
which case it must be possible to call the constructor without
|
2001-11-08 23:49:29 -04:00
|
|
|
any parameters). Instances of the following classes will be in
|
|
|
|
front of the \var{handler}s, unless the \var{handler}s contain
|
2001-03-01 04:40:42 -04:00
|
|
|
them, instances of them or subclasses of them:
|
2003-07-14 18:07:05 -03:00
|
|
|
\class{ProxyHandler}, \class{UnknownHandler}, \class{HTTPHandler},
|
|
|
|
\class{HTTPDefaultErrorHandler}, \class{HTTPRedirectHandler},
|
2003-12-14 01:27:34 -04:00
|
|
|
\class{FTPHandler}, \class{FileHandler}, \class{HTTPErrorProcessor}.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
If the Python installation has SSL support (\function{socket.ssl()}
|
|
|
|
exists), \class{HTTPSHandler} will also be added.
|
2003-06-07 14:53:08 -03:00
|
|
|
|
2003-07-14 18:07:05 -03:00
|
|
|
Beginning in Python 2.3, a \class{BaseHandler} subclass may also
|
|
|
|
change its \member{handler_order} member variable to modify its
|
2006-05-29 17:52:54 -03:00
|
|
|
position in the handlers list.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
The following exceptions are raised as appropriate:
|
|
|
|
|
2001-03-01 04:40:42 -04:00
|
|
|
\begin{excdesc}{URLError}
|
2001-11-08 23:49:29 -04:00
|
|
|
The handlers raise this exception (or derived exceptions) when they
|
|
|
|
run into a problem. It is a subclass of \exception{IOError}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{excdesc}
|
|
|
|
|
|
|
|
\begin{excdesc}{HTTPError}
|
|
|
|
A subclass of \exception{URLError}, it can also function as a
|
2001-03-02 16:39:34 -04:00
|
|
|
non-exceptional file-like return value (the same thing that
|
|
|
|
\function{urlopen()} returns). This is useful when handling exotic
|
|
|
|
HTTP errors, such as requests for authentication.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{excdesc}
|
|
|
|
|
|
|
|
\begin{excdesc}{GopherError}
|
|
|
|
A subclass of \exception{URLError}, this is the error raised by the
|
|
|
|
Gopher handler.
|
|
|
|
\end{excdesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
The following classes are provided:
|
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
\begin{classdesc}{Request}{url\optional{, data}\optional{, headers}
|
|
|
|
\optional{, origin_req_host}\optional{, unverifiable}}
|
2001-03-01 04:40:42 -04:00
|
|
|
This class is an abstraction of a URL request.
|
|
|
|
|
2006-07-29 12:57:08 -03:00
|
|
|
\var{url} should be a string containing a valid URL.
|
|
|
|
|
|
|
|
\var{data} may be a string specifying additional data to send to the
|
|
|
|
server, or \code{None} if no such data is needed.
|
|
|
|
Currently HTTP requests are the only ones that use \var{data};
|
|
|
|
the HTTP request will be a POST instead of a GET when the \var{data}
|
|
|
|
parameter is provided. \var{data} should be a buffer in the standard
|
|
|
|
\mimetype{application/x-www-form-urlencoded} format. The
|
|
|
|
\function{urllib.urlencode()} function takes a mapping or sequence of
|
|
|
|
2-tuples and returns a string in this format.
|
|
|
|
|
2001-03-01 04:40:42 -04:00
|
|
|
\var{headers} should be a dictionary, and will be treated as if
|
2001-03-02 16:39:34 -04:00
|
|
|
\method{add_header()} was called with each key and value as arguments.
|
2004-05-31 15:22:40 -03:00
|
|
|
|
|
|
|
The final two arguments are only of interest for correct handling of
|
|
|
|
third-party HTTP cookies:
|
|
|
|
|
|
|
|
\var{origin_req_host} should be the request-host of the origin
|
|
|
|
transaction, as defined by \rfc{2965}. It defaults to
|
|
|
|
\code{cookielib.request_host(self)}. This is the host name or IP
|
|
|
|
address of the original request that was initiated by the user. For
|
|
|
|
example, if the request is for an image in an HTML document, this
|
|
|
|
should be the request-host of the request for the page containing the
|
|
|
|
image.
|
|
|
|
|
|
|
|
\var{unverifiable} should indicate whether the request is
|
|
|
|
unverifiable, as defined by RFC 2965. It defaults to False. An
|
|
|
|
unverifiable request is one whose URL the user did not have the option
|
|
|
|
to approve. For example, if the request is for an image in an HTML
|
|
|
|
document, and the user had no option to approve the automatic fetching
|
|
|
|
of the image, this should be true.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{classdesc}{OpenerDirector}{}
|
|
|
|
The \class{OpenerDirector} class opens URLs via \class{BaseHandler}s
|
|
|
|
chained together. It manages the chaining of handlers, and recovery
|
|
|
|
from errors.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{BaseHandler}{}
|
|
|
|
This is the base class for all registered handlers --- and handles only
|
|
|
|
the simple mechanics of registration.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPDefaultErrorHandler}{}
|
|
|
|
A class which defines a default handler for HTTP error responses; all
|
|
|
|
responses are turned into \exception{HTTPError} exceptions.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPRedirectHandler}{}
|
|
|
|
A class to handle redirections.
|
|
|
|
\end{classdesc}
|
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
\begin{classdesc}{HTTPCookieProcessor}{\optional{cookiejar}}
|
|
|
|
A class to handle HTTP Cookies.
|
|
|
|
\end{classdesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{classdesc}{ProxyHandler}{\optional{proxies}}
|
|
|
|
Cause requests to go through a proxy.
|
|
|
|
If \var{proxies} is given, it must be a dictionary mapping
|
|
|
|
protocol names to URLs of proxies.
|
|
|
|
The default is to read the list of proxies from the environment
|
2004-08-25 08:24:42 -03:00
|
|
|
variables \envvar{<protocol>_proxy}.
|
2001-03-02 16:39:34 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPPasswordMgr}{}
|
|
|
|
Keep a database of
|
|
|
|
\code{(\var{realm}, \var{uri}) -> (\var{user}, \var{password})}
|
|
|
|
mappings.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPPasswordMgrWithDefaultRealm}{}
|
|
|
|
Keep a database of
|
|
|
|
\code{(\var{realm}, \var{uri}) -> (\var{user}, \var{password})} mappings.
|
|
|
|
A realm of \code{None} is considered a catch-all realm, which is searched
|
|
|
|
if no other realm fits.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{AbstractBasicAuthHandler}{\optional{password_mgr}}
|
|
|
|
This is a mixin class that helps with HTTP authentication, both
|
|
|
|
to the remote host and to a proxy.
|
2001-11-08 23:49:29 -04:00
|
|
|
\var{password_mgr}, if given, should be something that is compatible
|
|
|
|
with \class{HTTPPasswordMgr}; refer to section~\ref{http-password-mgr}
|
|
|
|
for information on the interface that must be supported.
|
2001-03-02 16:39:34 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPBasicAuthHandler}{\optional{password_mgr}}
|
|
|
|
Handle authentication with the remote host.
|
2001-11-08 23:49:29 -04:00
|
|
|
\var{password_mgr}, if given, should be something that is compatible
|
|
|
|
with \class{HTTPPasswordMgr}; refer to section~\ref{http-password-mgr}
|
|
|
|
for information on the interface that must be supported.
|
2001-03-02 16:39:34 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{ProxyBasicAuthHandler}{\optional{password_mgr}}
|
|
|
|
Handle authentication with the proxy.
|
2001-11-08 23:49:29 -04:00
|
|
|
\var{password_mgr}, if given, should be something that is compatible
|
|
|
|
with \class{HTTPPasswordMgr}; refer to section~\ref{http-password-mgr}
|
|
|
|
for information on the interface that must be supported.
|
2001-03-02 16:39:34 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{AbstractDigestAuthHandler}{\optional{password_mgr}}
|
2001-11-08 23:49:29 -04:00
|
|
|
This is a mixin class that helps with HTTP authentication, both
|
2001-03-02 16:39:34 -04:00
|
|
|
to the remote host and to a proxy.
|
2001-11-08 23:49:29 -04:00
|
|
|
\var{password_mgr}, if given, should be something that is compatible
|
|
|
|
with \class{HTTPPasswordMgr}; refer to section~\ref{http-password-mgr}
|
|
|
|
for information on the interface that must be supported.
|
2001-03-02 16:39:34 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPDigestAuthHandler}{\optional{password_mgr}}
|
|
|
|
Handle authentication with the remote host.
|
2001-11-08 23:49:29 -04:00
|
|
|
\var{password_mgr}, if given, should be something that is compatible
|
|
|
|
with \class{HTTPPasswordMgr}; refer to section~\ref{http-password-mgr}
|
|
|
|
for information on the interface that must be supported.
|
2001-03-02 16:39:34 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{ProxyDigestAuthHandler}{\optional{password_mgr}}
|
|
|
|
Handle authentication with the proxy.
|
2001-11-08 23:49:29 -04:00
|
|
|
\var{password_mgr}, if given, should be something that is compatible
|
|
|
|
with \class{HTTPPasswordMgr}; refer to section~\ref{http-password-mgr}
|
|
|
|
for information on the interface that must be supported.
|
2001-03-02 16:39:34 -04:00
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPHandler}{}
|
|
|
|
A class to handle opening of HTTP URLs.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{HTTPSHandler}{}
|
|
|
|
A class to handle opening of HTTPS URLs.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{FileHandler}{}
|
|
|
|
Open local files.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{FTPHandler}{}
|
|
|
|
Open FTP URLs.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{CacheFTPHandler}{}
|
|
|
|
Open FTP URLs, keeping a cache of open FTP connections to minimize
|
|
|
|
delays.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{GopherHandler}{}
|
|
|
|
Open gopher URLs.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{UnknownHandler}{}
|
|
|
|
A catch-all class to handle unknown URLs.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
|
|
|
|
\subsection{Request Objects \label{request-objects}}
|
|
|
|
|
2001-03-01 04:40:42 -04:00
|
|
|
The following methods describe all of \class{Request}'s public interface,
|
|
|
|
and so all must be overridden in subclasses.
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{add_data}{data}
|
2004-05-31 15:22:40 -03:00
|
|
|
Set the \class{Request} data to \var{data}. This is ignored by all
|
|
|
|
handlers except HTTP handlers --- and there it should be a byte
|
|
|
|
string, and will change the request to be \code{POST} rather than
|
|
|
|
\code{GET}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2003-04-24 12:32:12 -03:00
|
|
|
\begin{methoddesc}[Request]{get_method}{}
|
|
|
|
Return a string indicating the HTTP request method. This is only
|
2005-04-12 22:08:23 -03:00
|
|
|
meaningful for HTTP requests, and currently always returns
|
|
|
|
\code{'GET'} or \code{'POST'}.
|
2003-04-24 12:32:12 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-11-08 23:49:29 -04:00
|
|
|
\begin{methoddesc}[Request]{has_data}{}
|
2001-03-01 04:40:42 -04:00
|
|
|
Return whether the instance has a non-\code{None} data.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-11-08 23:49:29 -04:00
|
|
|
\begin{methoddesc}[Request]{get_data}{}
|
2001-03-01 04:40:42 -04:00
|
|
|
Return the instance's data.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{add_header}{key, val}
|
2001-03-02 16:39:34 -04:00
|
|
|
Add another header to the request. Headers are currently ignored by
|
|
|
|
all handlers except HTTP handlers, where they are added to the list
|
2001-11-08 23:49:29 -04:00
|
|
|
of headers sent to the server. Note that there cannot be more than
|
2001-03-02 16:39:34 -04:00
|
|
|
one header with the same name, and later calls will overwrite
|
|
|
|
previous calls in case the \var{key} collides. Currently, this is
|
|
|
|
no loss of HTTP functionality, since all headers which have meaning
|
2001-11-08 23:49:29 -04:00
|
|
|
when used more than once have a (header-specific) way of gaining the
|
2001-03-01 04:40:42 -04:00
|
|
|
same functionality using only one header.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2003-12-14 01:27:34 -04:00
|
|
|
\begin{methoddesc}[Request]{add_unredirected_header}{key, header}
|
|
|
|
Add a header that will not be added to a redirected request.
|
2004-02-28 12:00:23 -04:00
|
|
|
\versionadded{2.4}
|
2003-12-14 01:27:34 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{has_header}{header}
|
|
|
|
Return whether the instance has the named header (checks both regular
|
|
|
|
and unredirected).
|
2004-02-28 12:00:23 -04:00
|
|
|
\versionadded{2.4}
|
2003-12-14 01:27:34 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-01 04:40:42 -04:00
|
|
|
\begin{methoddesc}[Request]{get_full_url}{}
|
|
|
|
Return the URL given in the constructor.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{get_type}{}
|
2001-03-02 16:39:34 -04:00
|
|
|
Return the type of the URL --- also known as the scheme.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{get_host}{}
|
2001-11-08 23:49:29 -04:00
|
|
|
Return the host to which a connection will be made.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{get_selector}{}
|
|
|
|
Return the selector --- the part of the URL that is sent to
|
|
|
|
the server.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{set_proxy}{host, type}
|
2001-11-08 23:49:29 -04:00
|
|
|
Prepare the request by connecting to a proxy server. The \var{host}
|
|
|
|
and \var{type} will replace those of the instance, and the instance's
|
2001-03-02 16:39:34 -04:00
|
|
|
selector will be the original URL given in the constructor.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
\begin{methoddesc}[Request]{get_origin_req_host}{}
|
|
|
|
Return the request-host of the origin transaction, as defined by
|
|
|
|
\rfc{2965}. See the documentation for the \class{Request}
|
|
|
|
constructor.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[Request]{is_unverifiable}{}
|
|
|
|
Return whether the request is unverifiable, as defined by RFC 2965.
|
|
|
|
See the documentation for the \class{Request} constructor.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{OpenerDirector Objects \label{opener-director-objects}}
|
|
|
|
|
|
|
|
\class{OpenerDirector} instances have the following methods:
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[OpenerDirector]{add_handler}{handler}
|
2001-03-02 16:39:34 -04:00
|
|
|
\var{handler} should be an instance of \class{BaseHandler}. The
|
2004-05-31 15:22:40 -03:00
|
|
|
following methods are searched, and added to the possible chains (note
|
|
|
|
that HTTP errors are a special case).
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{itemize}
|
2001-03-02 16:39:34 -04:00
|
|
|
\item \method{\var{protocol}_open()} ---
|
|
|
|
signal that the handler knows how to open \var{protocol} URLs.
|
2004-05-31 15:22:40 -03:00
|
|
|
\item \method{http_error_\var{type}()} ---
|
|
|
|
signal that the handler knows how to handle HTTP errors with HTTP
|
|
|
|
error code \var{type}.
|
|
|
|
\item \method{\var{protocol}_error()} ---
|
|
|
|
signal that the handler knows how to handle errors from
|
|
|
|
(non-\code{http}) \var{protocol}.
|
2003-12-14 01:27:34 -04:00
|
|
|
\item \method{\var{protocol}_request()} ---
|
|
|
|
signal that the handler knows how to pre-process \var{protocol}
|
|
|
|
requests.
|
|
|
|
\item \method{\var{protocol}_response()} ---
|
|
|
|
signal that the handler knows how to post-process \var{protocol}
|
|
|
|
responses.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{itemize}
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[OpenerDirector]{open}{url\optional{, data}}
|
2001-11-08 23:49:29 -04:00
|
|
|
Open the given \var{url} (which can be a request object or a string),
|
2001-03-01 04:40:42 -04:00
|
|
|
optionally passing the given \var{data}.
|
|
|
|
Arguments, return values and exceptions raised are the same as those
|
2001-03-02 16:39:34 -04:00
|
|
|
of \function{urlopen()} (which simply calls the \method{open()} method
|
2004-05-31 15:22:40 -03:00
|
|
|
on the currently installed global \class{OpenerDirector}).
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{methoddesc}[OpenerDirector]{error}{proto\optional{,
|
|
|
|
arg\optional{, \moreargs}}}
|
2004-05-31 15:22:40 -03:00
|
|
|
Handle an error of the given protocol. This will call the registered
|
2001-11-08 23:49:29 -04:00
|
|
|
error handlers for the given protocol with the given arguments (which
|
|
|
|
are protocol specific). The HTTP protocol is a special case which
|
|
|
|
uses the HTTP response code to determine the specific error handler;
|
|
|
|
refer to the \method{http_error_*()} methods of the handler classes.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
Return values and exceptions raised are the same as those
|
2001-03-02 16:39:34 -04:00
|
|
|
of \function{urlopen()}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
OpenerDirector objects open URLs in three stages:
|
|
|
|
|
2004-07-10 15:28:33 -03:00
|
|
|
The order in which these methods are called within each stage is
|
|
|
|
determined by sorting the handler instances.
|
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
\begin{enumerate}
|
|
|
|
\item Every handler with a method named like
|
|
|
|
\method{\var{protocol}_request()} has that method called to
|
|
|
|
pre-process the request.
|
|
|
|
|
|
|
|
\item Handlers with a method named like
|
|
|
|
\method{\var{protocol}_open()} are called to handle the request.
|
|
|
|
This stage ends when a handler either returns a
|
|
|
|
non-\constant{None} value (ie. a response), or raises an exception
|
2006-03-17 12:26:31 -04:00
|
|
|
(usually \exception{URLError}). Exceptions are allowed to propagate.
|
2004-05-31 15:22:40 -03:00
|
|
|
|
|
|
|
In fact, the above algorithm is first tried for methods named
|
|
|
|
\method{default_open}. If all such methods return
|
|
|
|
\constant{None}, the algorithm is repeated for methods named like
|
|
|
|
\method{\var{protocol}_open()}. If all such methods return
|
|
|
|
\constant{None}, the algorithm is repeated for methods named
|
|
|
|
\method{unknown_open()}.
|
|
|
|
|
|
|
|
Note that the implementation of these methods may involve calls of
|
|
|
|
the parent \class{OpenerDirector} instance's \method{.open()} and
|
|
|
|
\method{.error()} methods.
|
|
|
|
|
|
|
|
\item Every handler with a method named like
|
|
|
|
\method{\var{protocol}_response()} has that method called to
|
|
|
|
post-process the response.
|
|
|
|
|
|
|
|
\end{enumerate}
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{BaseHandler Objects \label{base-handler-objects}}
|
|
|
|
|
|
|
|
\class{BaseHandler} objects provide a couple of methods that are
|
|
|
|
directly useful, and others that are meant to be used by derived
|
|
|
|
classes. These are intended for direct use:
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[BaseHandler]{add_parent}{director}
|
|
|
|
Add a director as parent.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[BaseHandler]{close}{}
|
|
|
|
Remove any parents.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-11-08 23:49:29 -04:00
|
|
|
The following members and methods should only be used by classes
|
2004-05-31 15:22:40 -03:00
|
|
|
derived from \class{BaseHandler}. \note{The convention has been
|
|
|
|
adopted that subclasses defining \method{\var{protocol}_request()} or
|
|
|
|
\method{\var{protocol}_response()} methods are named
|
|
|
|
\class{*Processor}; all others are named \class{*Handler}.}
|
|
|
|
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{memberdesc}[BaseHandler]{parent}
|
2001-03-02 16:39:34 -04:00
|
|
|
A valid \class{OpenerDirector}, which can be used to open using a
|
|
|
|
different protocol, or handle errors.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{memberdesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[BaseHandler]{default_open}{req}
|
2001-03-02 16:39:34 -04:00
|
|
|
This method is \emph{not} defined in \class{BaseHandler}, but
|
|
|
|
subclasses should define it if they want to catch all URLs.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-11-08 23:49:29 -04:00
|
|
|
This method, if implemented, will be called by the parent
|
2001-03-02 16:39:34 -04:00
|
|
|
\class{OpenerDirector}. It should return a file-like object as
|
|
|
|
described in the return value of the \method{open()} of
|
2001-11-08 23:49:29 -04:00
|
|
|
\class{OpenerDirector}, or \code{None}. It should raise
|
2001-03-02 16:39:34 -04:00
|
|
|
\exception{URLError}, unless a truly exceptional thing happens (for
|
|
|
|
example, \exception{MemoryError} should not be mapped to
|
2001-11-08 23:49:29 -04:00
|
|
|
\exception{URLError}).
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
This method will be called before any protocol-specific open method.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-05-11 12:46:45 -03:00
|
|
|
\begin{methoddescni}[BaseHandler]{\var{protocol}_open}{req}
|
2001-03-02 16:39:34 -04:00
|
|
|
This method is \emph{not} defined in \class{BaseHandler}, but
|
|
|
|
subclasses should define it if they want to handle URLs with the given
|
|
|
|
protocol.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-11-08 23:49:29 -04:00
|
|
|
This method, if defined, will be called by the parent
|
2001-03-02 16:39:34 -04:00
|
|
|
\class{OpenerDirector}. Return values should be the same as for
|
|
|
|
\method{default_open()}.
|
2001-05-11 12:46:45 -03:00
|
|
|
\end{methoddescni}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[BaseHandler]{unknown_open}{req}
|
2001-03-02 16:39:34 -04:00
|
|
|
This method is \var{not} defined in \class{BaseHandler}, but
|
|
|
|
subclasses should define it if they want to catch all URLs with no
|
2001-11-08 23:49:29 -04:00
|
|
|
specific registered handler to open it.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-11-08 23:49:29 -04:00
|
|
|
This method, if implemented, will be called by the \member{parent}
|
2001-03-02 16:39:34 -04:00
|
|
|
\class{OpenerDirector}. Return values should be the same as for
|
|
|
|
\method{default_open()}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[BaseHandler]{http_error_default}{req, fp, code, msg, hdrs}
|
2001-03-02 16:39:34 -04:00
|
|
|
This method is \emph{not} defined in \class{BaseHandler}, but
|
|
|
|
subclasses should override it if they intend to provide a catch-all
|
|
|
|
for otherwise unhandled HTTP errors. It will be called automatically
|
|
|
|
by the \class{OpenerDirector} getting the error, and should not
|
|
|
|
normally be called in other circumstances.
|
|
|
|
|
|
|
|
\var{req} will be a \class{Request} object, \var{fp} will be a
|
|
|
|
file-like object with the HTTP error body, \var{code} will be the
|
|
|
|
three-digit code of the error, \var{msg} will be the user-visible
|
|
|
|
explanation of the code and \var{hdrs} will be a mapping object with
|
|
|
|
the headers of the error.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
Return values and exceptions raised should be the same as those
|
2001-03-02 16:39:34 -04:00
|
|
|
of \function{urlopen()}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{methoddesc}[BaseHandler]{http_error_\var{nnn}}{req, fp, code, msg, hdrs}
|
|
|
|
\var{nnn} should be a three-digit HTTP error code. This method is
|
|
|
|
also not defined in \class{BaseHandler}, but will be called, if it
|
|
|
|
exists, on an instance of a subclass, when an HTTP error with code
|
|
|
|
\var{nnn} occurs.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
Subclasses should override this method to handle specific HTTP
|
|
|
|
errors.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
Arguments, return values and exceptions raised should be the same as
|
|
|
|
for \method{http_error_default()}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
\begin{methoddescni}[BaseHandler]{\var{protocol}_request}{req}
|
|
|
|
This method is \emph{not} defined in \class{BaseHandler}, but
|
|
|
|
subclasses should define it if they want to pre-process requests of
|
|
|
|
the given protocol.
|
|
|
|
|
|
|
|
This method, if defined, will be called by the parent
|
|
|
|
\class{OpenerDirector}. \var{req} will be a \class{Request} object.
|
|
|
|
The return value should be a \class{Request} object.
|
|
|
|
\end{methoddescni}
|
|
|
|
|
|
|
|
\begin{methoddescni}[BaseHandler]{\var{protocol}_response}{req, response}
|
|
|
|
This method is \emph{not} defined in \class{BaseHandler}, but
|
|
|
|
subclasses should define it if they want to post-process responses of
|
|
|
|
the given protocol.
|
|
|
|
|
|
|
|
This method, if defined, will be called by the parent
|
|
|
|
\class{OpenerDirector}. \var{req} will be a \class{Request} object.
|
|
|
|
\var{response} will be an object implementing the same interface as
|
|
|
|
the return value of \function{urlopen()}. The return value should
|
|
|
|
implement the same interface as the return value of
|
|
|
|
\function{urlopen()}.
|
|
|
|
\end{methoddescni}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\subsection{HTTPRedirectHandler Objects \label{http-redirect-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2003-04-24 12:32:12 -03:00
|
|
|
\note{Some HTTP redirections require action from this module's client
|
|
|
|
code. If this is the case, \exception{HTTPError} is raised. See
|
|
|
|
\rfc{2616} for details of the precise meanings of the various
|
|
|
|
redirection codes.}
|
|
|
|
|
|
|
|
\begin{methoddesc}[HTTPRedirectHandler]{redirect_request}{req,
|
|
|
|
fp, code, msg, hdrs}
|
|
|
|
Return a \class{Request} or \code{None} in response to a redirect.
|
|
|
|
This is called by the default implementations of the
|
2004-05-31 15:22:40 -03:00
|
|
|
\method{http_error_30*()} methods when a redirection is received from
|
|
|
|
the server. If a redirection should take place, return a new
|
2003-07-14 18:07:05 -03:00
|
|
|
\class{Request} to allow \method{http_error_30*()} to perform the
|
2004-05-31 15:22:40 -03:00
|
|
|
redirect. Otherwise, raise \exception{HTTPError} if no other handler
|
|
|
|
should try to handle this URL, or return \code{None} if you can't but
|
|
|
|
another handler might.
|
2003-04-24 12:32:12 -03:00
|
|
|
|
2003-07-14 18:07:05 -03:00
|
|
|
\begin{notice}
|
|
|
|
The default implementation of this method does not strictly
|
|
|
|
follow \rfc{2616}, which says that 301 and 302 responses to \code{POST}
|
2003-07-12 04:33:32 -03:00
|
|
|
requests must not be automatically redirected without confirmation by
|
|
|
|
the user. In reality, browsers do allow automatic redirection of
|
2003-07-14 18:07:05 -03:00
|
|
|
these responses, changing the POST to a \code{GET}, and the default
|
|
|
|
implementation reproduces this behavior.
|
|
|
|
\end{notice}
|
2003-04-24 12:32:12 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{methoddesc}[HTTPRedirectHandler]{http_error_301}{req,
|
|
|
|
fp, code, msg, hdrs}
|
|
|
|
Redirect to the \code{Location:} URL. This method is called by
|
|
|
|
the parent \class{OpenerDirector} when getting an HTTP
|
2003-04-24 12:32:12 -03:00
|
|
|
`moved permanently' response.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{methoddesc}[HTTPRedirectHandler]{http_error_302}{req,
|
|
|
|
fp, code, msg, hdrs}
|
|
|
|
The same as \method{http_error_301()}, but called for the
|
2003-04-24 12:32:12 -03:00
|
|
|
`found' response.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2003-04-24 12:32:12 -03:00
|
|
|
\begin{methoddesc}[HTTPRedirectHandler]{http_error_303}{req,
|
|
|
|
fp, code, msg, hdrs}
|
|
|
|
The same as \method{http_error_301()}, but called for the
|
2003-07-12 04:33:32 -03:00
|
|
|
`see other' response.
|
2003-04-24 12:32:12 -03:00
|
|
|
\end{methoddesc}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2003-07-12 04:33:32 -03:00
|
|
|
\begin{methoddesc}[HTTPRedirectHandler]{http_error_307}{req,
|
|
|
|
fp, code, msg, hdrs}
|
|
|
|
The same as \method{http_error_301()}, but called for the
|
|
|
|
`temporary redirect' response.
|
2003-07-14 17:53:57 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2003-07-12 04:33:32 -03:00
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
\subsection{HTTPCookieProcessor Objects \label{http-cookie-processor}}
|
|
|
|
|
2005-12-04 16:25:23 -04:00
|
|
|
\versionadded{2.4}
|
|
|
|
|
2004-05-31 15:22:40 -03:00
|
|
|
\class{HTTPCookieProcessor} instances have one attribute:
|
|
|
|
|
|
|
|
\begin{memberdesc}{cookiejar}
|
|
|
|
The \class{cookielib.CookieJar} in which cookies are stored.
|
|
|
|
\end{memberdesc}
|
|
|
|
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\subsection{ProxyHandler Objects \label{proxy-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-05-11 12:46:45 -03:00
|
|
|
\begin{methoddescni}[ProxyHandler]{\var{protocol}_open}{request}
|
2001-03-02 16:39:34 -04:00
|
|
|
The \class{ProxyHandler} will have a method
|
|
|
|
\method{\var{protocol}_open()} for every \var{protocol} which has a
|
|
|
|
proxy in the \var{proxies} dictionary given in the constructor. The
|
|
|
|
method will modify requests to go through the proxy, by calling
|
|
|
|
\code{request.set_proxy()}, and call the next handler in the chain to
|
|
|
|
actually execute the protocol.
|
2001-05-11 12:46:45 -03:00
|
|
|
\end{methoddescni}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\subsection{HTTPPasswordMgr Objects \label{http-password-mgr}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
These methods are available on \class{HTTPPasswordMgr} and
|
|
|
|
\class{HTTPPasswordMgrWithDefaultRealm} objects.
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\begin{methoddesc}[HTTPPasswordMgr]{add_password}{realm, uri, user, passwd}
|
2004-05-12 00:07:27 -03:00
|
|
|
\var{uri} can be either a single URI, or a sequence of URIs. \var{realm},
|
2001-03-01 04:40:42 -04:00
|
|
|
\var{user} and \var{passwd} must be strings. This causes
|
2001-03-02 16:39:34 -04:00
|
|
|
\code{(\var{user}, \var{passwd})} to be used as authentication tokens
|
2001-03-01 04:40:42 -04:00
|
|
|
when authentication for \var{realm} and a super-URI of any of the
|
|
|
|
given URIs is given.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[HTTPPasswordMgr]{find_user_password}{realm, authuri}
|
2001-03-02 16:39:34 -04:00
|
|
|
Get user/password for given realm and URI, if any. This method will
|
|
|
|
return \code{(None, None)} if there is no matching user/password.
|
|
|
|
|
|
|
|
For \class{HTTPPasswordMgrWithDefaultRealm} objects, the realm
|
|
|
|
\code{None} will be searched if the given \var{realm} has no matching
|
|
|
|
user/password.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\subsection{AbstractBasicAuthHandler Objects
|
|
|
|
\label{abstract-basic-auth-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2006-04-30 04:06:11 -03:00
|
|
|
\begin{methoddesc}[AbstractBasicAuthHandler]{http_error_auth_reqed}
|
2001-03-01 04:40:42 -04:00
|
|
|
{authreq, host, req, headers}
|
2001-11-08 23:49:29 -04:00
|
|
|
Handle an authentication request by getting a user/password pair, and
|
|
|
|
re-trying the request. \var{authreq} should be the name of the header
|
|
|
|
where the information about the realm is included in the request,
|
2006-04-30 04:06:11 -03:00
|
|
|
\var{host} specifies the URL and path to authenticate for, \var{req}
|
|
|
|
should be the (failed) \class{Request} object, and \var{headers}
|
|
|
|
should be the error headers.
|
|
|
|
|
|
|
|
\var{host} is either an authority (e.g. \code{"python.org"}) or a URL
|
|
|
|
containing an authority component (e.g. \code{"http://python.org/"}).
|
|
|
|
In either case, the authority must not contain a userinfo component
|
|
|
|
(so, \code{"python.org"} and \code{"python.org:80"} are fine,
|
|
|
|
\code{"joe:password@python.org"} is not).
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{HTTPBasicAuthHandler Objects
|
|
|
|
\label{http-basic-auth-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[HTTPBasicAuthHandler]{http_error_401}{req, fp, code,
|
|
|
|
msg, hdrs}
|
2001-11-08 23:49:29 -04:00
|
|
|
Retry the request with authentication information, if available.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{ProxyBasicAuthHandler Objects
|
|
|
|
\label{proxy-basic-auth-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[ProxyBasicAuthHandler]{http_error_407}{req, fp, code,
|
|
|
|
msg, hdrs}
|
2001-11-08 23:49:29 -04:00
|
|
|
Retry the request with authentication information, if available.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\subsection{AbstractDigestAuthHandler Objects
|
|
|
|
\label{abstract-digest-auth-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
2006-04-30 04:06:11 -03:00
|
|
|
\begin{methoddesc}[AbstractDigestAuthHandler]{http_error_auth_reqed}
|
2001-03-01 04:40:42 -04:00
|
|
|
{authreq, host, req, headers}
|
|
|
|
\var{authreq} should be the name of the header where the information about
|
2001-11-08 23:49:29 -04:00
|
|
|
the realm is included in the request, \var{host} should be the host to
|
|
|
|
authenticate to, \var{req} should be the (failed) \class{Request}
|
|
|
|
object, and \var{headers} should be the error headers.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{HTTPDigestAuthHandler Objects
|
|
|
|
\label{http-digest-auth-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[HTTPDigestAuthHandler]{http_error_401}{req, fp, code,
|
|
|
|
msg, hdrs}
|
2001-11-08 23:49:29 -04:00
|
|
|
Retry the request with authentication information, if available.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{ProxyDigestAuthHandler Objects
|
|
|
|
\label{proxy-digest-auth-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[ProxyDigestAuthHandler]{http_error_407}{req, fp, code,
|
|
|
|
msg, hdrs}
|
2001-03-02 16:39:34 -04:00
|
|
|
Retry the request with authentication information, if available.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{HTTPHandler Objects \label{http-handler-objects}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[HTTPHandler]{http_open}{req}
|
2001-11-08 23:49:29 -04:00
|
|
|
Send an HTTP request, which can be either GET or POST, depending on
|
2001-03-02 16:39:34 -04:00
|
|
|
\code{\var{req}.has_data()}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{HTTPSHandler Objects \label{https-handler-objects}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[HTTPSHandler]{https_open}{req}
|
2001-03-02 16:39:34 -04:00
|
|
|
Send an HTTPS request, which can be either GET or POST, depending on
|
|
|
|
\code{\var{req}.has_data()}.
|
2001-03-01 04:40:42 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\subsection{FileHandler Objects \label{file-handler-objects}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[FileHandler]{file_open}{req}
|
|
|
|
Open the file locally, if there is no host name, or
|
2001-03-02 16:39:34 -04:00
|
|
|
the host name is \code{'localhost'}. Change the
|
2001-03-01 04:40:42 -04:00
|
|
|
protocol to \code{ftp} otherwise, and retry opening
|
|
|
|
it using \member{parent}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{FTPHandler Objects \label{ftp-handler-objects}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[FTPHandler]{ftp_open}{req}
|
|
|
|
Open the FTP file indicated by \var{req}.
|
|
|
|
The login is always done with empty username and password.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
\subsection{CacheFTPHandler Objects \label{cacheftp-handler-objects}}
|
|
|
|
|
|
|
|
\class{CacheFTPHandler} objects are \class{FTPHandler} objects with
|
|
|
|
the following additional methods:
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[CacheFTPHandler]{setTimeout}{t}
|
|
|
|
Set timeout of connections to \var{t} seconds.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[CacheFTPHandler]{setMaxConns}{m}
|
|
|
|
Set maximum number of cached connections to \var{m}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
\subsection{GopherHandler Objects \label{gopher-handler}}
|
2001-03-01 04:40:42 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[GopherHandler]{gopher_open}{req}
|
|
|
|
Open the gopher resource indicated by \var{req}.
|
|
|
|
\end{methoddesc}
|
2001-03-02 16:39:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
\subsection{UnknownHandler Objects \label{unknown-handler-objects}}
|
|
|
|
|
2001-07-05 18:14:03 -03:00
|
|
|
\begin{methoddesc}[UnknownHandler]{unknown_open}{}
|
2001-03-02 16:39:34 -04:00
|
|
|
Raise a \exception{URLError} exception.
|
|
|
|
\end{methoddesc}
|
2003-04-25 12:27:33 -03:00
|
|
|
|
|
|
|
|
2003-12-14 01:27:34 -04:00
|
|
|
\subsection{HTTPErrorProcessor Objects \label{http-error-processor-objects}}
|
|
|
|
|
2004-02-28 12:00:23 -04:00
|
|
|
\versionadded{2.4}
|
|
|
|
|
2003-12-14 01:27:34 -04:00
|
|
|
\begin{methoddesc}[HTTPErrorProcessor]{unknown_open}{}
|
|
|
|
Process HTTP error responses.
|
|
|
|
|
|
|
|
For 200 error codes, the response object is returned immediately.
|
|
|
|
|
|
|
|
For non-200 error codes, this simply passes the job on to the
|
|
|
|
\method{\var{protocol}_error_\var{code}()} handler methods, via
|
|
|
|
\method{OpenerDirector.error()}. Eventually,
|
|
|
|
\class{urllib2.HTTPDefaultErrorHandler} will raise an
|
|
|
|
\exception{HTTPError} if no other handler handles the error.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
|
2003-04-25 12:27:33 -03:00
|
|
|
\subsection{Examples \label{urllib2-examples}}
|
|
|
|
|
|
|
|
This example gets the python.org main page and displays the first 100
|
|
|
|
bytes of it:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import urllib2
|
|
|
|
>>> f = urllib2.urlopen('http://www.python.org/')
|
|
|
|
>>> print f.read(100)
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<?xml-stylesheet href="./css/ht2html
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Here we are sending a data-stream to the stdin of a CGI and reading
|
2005-12-26 19:36:32 -04:00
|
|
|
the data it returns to us. Note that this example will only work when the
|
|
|
|
Python installation supports SSL.
|
2003-04-25 12:27:33 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> import urllib2
|
|
|
|
>>> req = urllib2.Request(url='https://localhost/cgi-bin/test.cgi',
|
|
|
|
... data='This data is passed to stdin of the CGI')
|
|
|
|
>>> f = urllib2.urlopen(req)
|
|
|
|
>>> print f.read()
|
|
|
|
Got Data: "This data is passed to stdin of the CGI"
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The code for the sample CGI used in the above example is:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
data = sys.stdin.read()
|
2004-02-08 16:25:01 -04:00
|
|
|
print 'Content-type: text-plain\n\nGot Data: "%s"' % data
|
2003-04-25 12:27:33 -03:00
|
|
|
\end{verbatim}
|
2004-08-25 08:24:42 -03:00
|
|
|
|
|
|
|
|
|
|
|
Use of Basic HTTP Authentication:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
import urllib2
|
|
|
|
# Create an OpenerDirector with support for Basic HTTP Authentication...
|
|
|
|
auth_handler = urllib2.HTTPBasicAuthHandler()
|
|
|
|
auth_handler.add_password('realm', 'host', 'username', 'password')
|
|
|
|
opener = urllib2.build_opener(auth_handler)
|
|
|
|
# ...and install it globally so it can be used with urlopen.
|
|
|
|
urllib2.install_opener(opener)
|
|
|
|
urllib2.urlopen('http://www.example.com/login.html')
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
\function{build_opener()} provides many handlers by default, including a
|
|
|
|
\class{ProxyHandler}. By default, \class{ProxyHandler} uses the
|
|
|
|
environment variables named \code{<scheme>_proxy}, where \code{<scheme>}
|
|
|
|
is the URL scheme involved. For example, the \envvar{http_proxy}
|
|
|
|
environment variable is read to obtain the HTTP proxy's URL.
|
|
|
|
|
|
|
|
This example replaces the default \class{ProxyHandler} with one that uses
|
|
|
|
programatically-supplied proxy URLs, and adds proxy authorization support
|
|
|
|
with \class{ProxyBasicAuthHandler}.
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
proxy_handler = urllib2.ProxyHandler({'http': 'http://www.example.com:3128/'})
|
|
|
|
proxy_auth_handler = urllib2.HTTPBasicAuthHandler()
|
|
|
|
proxy_auth_handler.add_password('realm', 'host', 'username', 'password')
|
|
|
|
|
|
|
|
opener = build_opener(proxy_handler, proxy_auth_handler)
|
|
|
|
# This time, rather than install the OpenerDirector, we use it directly:
|
|
|
|
opener.open('http://www.example.com/login.html')
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
|
|
|
|
Adding HTTP headers:
|
|
|
|
|
|
|
|
Use the \var{headers} argument to the \class{Request} constructor, or:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
import urllib2
|
|
|
|
req = urllib2.Request('http://www.example.com/')
|
|
|
|
req.add_header('Referer', 'http://www.python.org/')
|
|
|
|
r = urllib2.urlopen(req)
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
\class{OpenerDirector} automatically adds a \mailheader{User-Agent}
|
|
|
|
header to every \class{Request}. To change this:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
import urllib2
|
|
|
|
opener = urllib2.build_opener()
|
|
|
|
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
|
|
|
|
opener.open('http://www.example.com/')
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Also, remember that a few standard headers
|
|
|
|
(\mailheader{Content-Length}, \mailheader{Content-Type} and
|
|
|
|
\mailheader{Host}) are added when the \class{Request} is passed to
|
|
|
|
\function{urlopen()} (or \method{OpenerDirector.open()}).
|