22.6. urllib.request — Extensible library for opening URLs¶
Source code: Lib/urllib/request.py
The urllib.request module defines functions and classes which help in
opening URLs (mostly HTTP) in a complex world — basic and digest
authentication, redirections, cookies and more.
也參考
The Requests package is recommended for a higher-level HTTP client interface.
The urllib.request module defines the following functions:
-
urllib.request.urlopen(url, data=None, [timeout, ]*, cafile=None, capath=None, cadefault=False, context=None)¶ Open the URL url, which can be either a string or a
Requestobject.data must be an object specifying additional data to be sent to the server, or
Noneif no such data is needed. SeeRequestfor details.urllib.request module uses HTTP/1.1 and includes
Connection:closeheader in its HTTP requests.The optional timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used). This actually only works for HTTP, HTTPS and FTP connections.
If context is specified, it must be a
ssl.SSLContextinstance describing the various SSL options. SeeHTTPSConnectionfor more details.The optional cafile and capath parameters specify a set of trusted CA certificates for HTTPS requests. cafile should point to a single file containing a bundle of CA certificates, whereas capath should point to a directory of hashed certificate files. More information can be found in
ssl.SSLContext.load_verify_locations().The cadefault parameter is ignored.
This function always returns an object which can work as a context manager and has methods such as
geturl()— return the URL of the resource retrieved, commonly used to determine if a redirect was followedinfo()— return the meta-information of the page, such as headers, in the form of anemail.message_from_string()instance (see Quick Reference to HTTP Headers)getcode()– return the HTTP status code of the response.
For HTTP and HTTPS URLs, this function returns a
http.client.HTTPResponseobject slightly modified. In addition to the three new methods above, the msg attribute contains the same information as thereasonattribute — the reason phrase returned by server — instead of the response headers as it is specified in the documentation forHTTPResponse.For FTP, file, and data URLs and requests explicitly handled by legacy
URLopenerandFancyURLopenerclasses, this function returns aurllib.response.addinfourlobject.Raises
URLErroron protocol errors.Note that
Nonemay be returned if no handler handles the request (though the default installed globalOpenerDirectorusesUnknownHandlerto ensure this never happens).In addition, if proxy settings are detected (for example, when a
*_proxyenvironment variable likehttp_proxyis set),ProxyHandleris default installed and makes sure the requests are handled through the proxy.The legacy
urllib.urlopenfunction from Python 2.6 and earlier has been discontinued;urllib.request.urlopen()corresponds to the oldurllib2.urlopen. Proxy handling, which was done by passing a dictionary parameter tourllib.urlopen, can be obtained by usingProxyHandlerobjects.3.2 版更變: cafile and capath were added.
3.2 版更變: HTTPS virtual hosts are now supported if possible (that is, if
ssl.HAS_SNIis true).3.2 版新加入: data can be an iterable object.
3.3 版更變: cadefault was added.
3.4.3 版更變: context was added.
3.6 版後已棄用: cafile, capath and cadefault are deprecated in favor of context. Please use
ssl.SSLContext.load_cert_chain()instead, or letssl.create_default_context()select the system’s trusted CA certificates for you.
-
urllib.request.install_opener(opener)¶ Install an
OpenerDirectorinstance as the default global opener. Installing an opener is only necessary if you want urlopen to use that opener; otherwise, simply callOpenerDirector.open()instead ofurlopen(). The code does not check for a realOpenerDirector, and any class with the appropriate interface will work.
-
urllib.request.build_opener([handler, ...])¶ Return an
OpenerDirectorinstance, which chains the handlers in the order given. handlers can be either instances ofBaseHandler, or subclasses ofBaseHandler(in which case it must be possible to call the constructor without any parameters). Instances of the following classes will be in front of the handlers, unless the handlers contain them, instances of them or subclasses of them:ProxyHandler(if proxy settings are detected),UnknownHandler,HTTPHandler,HTTPDefaultErrorHandler,HTTPRedirectHandler,FTPHandler,FileHandler,HTTPErrorProcessor.If the Python installation has SSL support (i.e., if the
sslmodule can be imported),HTTPSHandlerwill also be added.A
BaseHandlersubclass may also change itshandler_orderattribute to modify its position in the handlers list.
-
urllib.request.pathname2url(path)¶ Convert the pathname path from the local syntax for a path to the form used in the path component of a URL. This does not produce a complete URL. The return value will already be quoted using the
quote()function.
-
urllib.request.url2pathname(path)¶ Convert the path component path from a percent-encoded URL to the local syntax for a path. This does not accept a complete URL. This function uses
unquote()to decode path.
-
urllib.request.getproxies()¶ This helper function returns a dictionary of scheme to proxy server URL mappings. It scans the environment for variables named
<scheme>_proxy, in a case insensitive approach, for all operating systems first, and when it cannot find it, looks for proxy information from Mac OSX System Configuration for Mac OS X and Windows Systems Registry for Windows. If both lowercase and uppercase environment variables exist (and disagree), lowercase is preferred.備註
If the environment variable
REQUEST_METHODis set, which usually indicates your script is running in a CGI environment, the environment variableHTTP_PROXY(uppercase_PROXY) will be ignored. This is because that variable can be injected by a client using the 「Proxy:」 HTTP header. If you need to use an HTTP proxy in a CGI environment, either useProxyHandlerexplicitly, or make sure the variable name is in lowercase (or at least the_proxysuffix).
The following classes are provided:
-
class
urllib.request.Request(url, data=None, headers={}, origin_req_host=None, unverifiable=False, method=None)¶ This class is an abstraction of a URL request.
url should be a string containing a valid URL.
data must be an object specifying additional data to send to the server, or
Noneif no such data is needed. Currently HTTP requests are the only ones that use data. The supported object types include bytes, file-like objects, and iterables. If noContent-LengthnorTransfer-Encodingheader field has been provided,HTTPHandlerwill set these headers according to the type of data.Content-Lengthwill be used to send bytes objects, whileTransfer-Encoding: chunkedas specified in RFC 7230, Section 3.3.1 will be used to send files and other iterables.For an HTTP POST request method, data should be a buffer in the standard application/x-www-form-urlencoded format. The
urllib.parse.urlencode()function takes a mapping or sequence of 2-tuples and returns an ASCII string in this format. It should be encoded to bytes before being used as the data parameter.headers should be a dictionary, and will be treated as if
add_header()was called with each key and value as arguments. This is often used to 「spoof」 theUser-Agentheader value, which is used by a browser to identify itself – some HTTP servers only allow requests coming from common browsers as opposed to scripts. For example, Mozilla Firefox may identify itself as"Mozilla/5.0 (X11; U; Linux i686) Gecko/20071127 Firefox/2.0.0.11", whileurllib’s default user agent string is"Python-urllib/2.6"(on Python 2.6).An appropriate
Content-Typeheader should be included if the data argument is present. If this header has not been provided and data is not None,Content-Type: application/x-www-form-urlencodedwill be added as a default.The final two arguments are only of interest for correct handling of third-party HTTP cookies:
origin_req_host should be the request-host of the origin transaction, as defined by RFC 2965. It defaults to
http.cookiejar.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.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.method should be a string that indicates the HTTP request method that will be used (e.g.
'HEAD'). If provided, its value is stored in themethodattribute and is used byget_method(). The default is'GET'if data isNoneor'POST'otherwise. Subclasses may indicate a different default method by setting themethodattribute in the class itself.備註
The request will not work as expected if the data object is unable to deliver its content more than once (e.g. a file or an iterable that can produce the content only once) and the request is retried for HTTP redirects or authentication. The data is sent to the HTTP server right away after the headers. There is no support for a 100-continue expectation in the library.
3.3 版更變:
Request.methodargument is added to the Request class.3.4 版更變: Default
Request.methodmay be indicated at the class level.3.6 版更變: Do not raise an error if the
Content-Lengthhas not been provided and data is neitherNonenor a bytes object. Fall back to use chunked transfer encoding instead.
-
class
urllib.request.OpenerDirector¶ The
OpenerDirectorclass opens URLs viaBaseHandlers chained together. It manages the chaining of handlers, and recovery from errors.
-
class
urllib.request.BaseHandler¶ This is the base class for all registered handlers — and handles only the simple mechanics of registration.
-
class
urllib.request.HTTPDefaultErrorHandler¶ A class which defines a default handler for HTTP error responses; all responses are turned into
HTTPErrorexceptions.
-
class
urllib.request.HTTPRedirectHandler¶ A class to handle redirections.
-
class
urllib.request.HTTPCookieProcessor(cookiejar=None)¶ A class to handle HTTP Cookies.
-
class
urllib.request.ProxyHandler(proxies=None)¶ Cause requests to go through a proxy. If 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 variables
<protocol>_proxy. If no proxy environment variables are set, then in a Windows environment proxy settings are obtained from the registry’s Internet Settings section, and in a Mac OS X environment proxy information is retrieved from the OS X System Configuration Framework.To disable autodetected proxy pass an empty dictionary.
The
no_proxyenvironment variable can be used to specify hosts which shouldn’t be reached via proxy; if set, it should be a comma-separated list of hostname suffixes, optionally with:portappended, for examplecern.ch,ncsa.uiuc.edu,some.host:8080.備註
HTTP_PROXYwill be ignored if a variableREQUEST_METHODis set; see the documentation ongetproxies().
-
class
urllib.request.HTTPPasswordMgr¶ Keep a database of
(realm, uri) -> (user, password)mappings.
-
class
urllib.request.HTTPPasswordMgrWithDefaultRealm¶ Keep a database of
(realm, uri) -> (user, password)mappings. A realm ofNoneis considered a catch-all realm, which is searched if no other realm fits.
-
class
urllib.request.HTTPPasswordMgrWithPriorAuth¶ A variant of
HTTPPasswordMgrWithDefaultRealmthat also has a database ofuri -> is_authenticatedmappings. Can be used by a BasicAuth handler to determine when to send authentication credentials immediately instead of waiting for a401response first.3.5 版新加入.
-
class
urllib.request.AbstractBasicAuthHandler(password_mgr=None)¶ This is a mixin class that helps with HTTP authentication, both to the remote host and to a proxy. password_mgr, if given, should be something that is compatible with
HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported. If passwd_mgr also providesis_authenticatedandupdate_authenticatedmethods (see HTTPPasswordMgrWithPriorAuth Objects), then the handler will use theis_authenticatedresult for a given URI to determine whether or not to send authentication credentials with the request. Ifis_authenticatedreturnsTruefor the URI, credentials are sent. Ifis_authenticatedisFalse, credentials are not sent, and then if a401response is received the request is re-sent with the authentication credentials. If authentication succeeds,update_authenticatedis called to setis_authenticatedTruefor the URI, so that subsequent requests to the URI or any of its super-URIs will automatically include the authentication credentials.3.5 版新加入: Added
is_authenticatedsupport.
-
class
urllib.request.HTTPBasicAuthHandler(password_mgr=None)¶ Handle authentication with the remote host. password_mgr, if given, should be something that is compatible with
HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported. HTTPBasicAuthHandler will raise aValueErrorwhen presented with a wrong Authentication scheme.
-
class
urllib.request.ProxyBasicAuthHandler(password_mgr=None)¶ Handle authentication with the proxy. password_mgr, if given, should be something that is compatible with
HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported.
-
class
urllib.request.AbstractDigestAuthHandler(password_mgr=None)¶ This is a mixin class that helps with HTTP authentication, both to the remote host and to a proxy. password_mgr, if given, should be something that is compatible with
HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported.
-
class
urllib.request.HTTPDigestAuthHandler(password_mgr=None)¶ Handle authentication with the remote host. password_mgr, if given, should be something that is compatible with
HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported. When both Digest Authentication Handler and Basic Authentication Handler are both added, Digest Authentication is always tried first. If the Digest Authentication returns a 40x response again, it is sent to Basic Authentication handler to Handle. This Handler method will raise aValueErrorwhen presented with an authentication scheme other than Digest or Basic.3.3 版更變: Raise
ValueErroron unsupported Authentication Scheme.
-
class
urllib.request.ProxyDigestAuthHandler(password_mgr=None)¶ Handle authentication with the proxy. password_mgr, if given, should be something that is compatible with
HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported.
-
class
urllib.request.HTTPHandler¶ A class to handle opening of HTTP URLs.
-
class
urllib.request.HTTPSHandler(debuglevel=0, context=None, check_hostname=None)¶ A class to handle opening of HTTPS URLs. context and check_hostname have the same meaning as in
http.client.HTTPSConnection.3.2 版更變: context and check_hostname were added.
-
class
urllib.request.FileHandler¶ Open local files.
-
class
urllib.request.DataHandler¶ Open data URLs.
3.4 版新加入.
-
class
urllib.request.FTPHandler¶ Open FTP URLs.
-
class
urllib.request.CacheFTPHandler¶ Open FTP URLs, keeping a cache of open FTP connections to minimize delays.
-
class
urllib.request.UnknownHandler¶ A catch-all class to handle unknown URLs.
-
class
urllib.request.HTTPErrorProcessor¶ Process HTTP error responses.
22.6.1. Request Objects¶
The following methods describe Request’s public interface,
and so all may be overridden in subclasses. It also defines several
public attributes that can be used by clients to inspect the parsed
request.
-
Request.full_url¶ The original URL passed to the constructor.
3.4 版更變.
Request.full_url is a property with setter, getter and a deleter. Getting
full_urlreturns the original request URL with the fragment, if it was present.
-
Request.type¶ The URI scheme.
-
Request.host¶ The URI authority, typically a host, but may also contain a port separated by a colon.
-
Request.origin_req_host¶ The original host for the request, without port.
-
Request.selector¶ The URI path. If the
Requestuses a proxy, then selector will be the full URL that is passed to the proxy.
-
Request.data¶ The entity body for the request, or
Noneif not specified.3.4 版更變: Changing value of
Request.datanow deletes 「Content-Length」 header if it was previously set or calculated.
-
Request.unverifiable¶ boolean, indicates whether the request is unverifiable as defined by RFC 2965.
-
Request.method¶ The HTTP request method to use. By default its value is
None, which means thatget_method()will do its normal computation of the method to be used. Its value can be set (thus overriding the default computation inget_method()) either by providing a default value by setting it at the class level in aRequestsubclass, or by passing a value in to theRequestconstructor via the method argument.3.3 版新加入.
3.4 版更變: A default value can now be set in subclasses; previously it could only be set via the constructor argument.
-
Request.get_method()¶ Return a string indicating the HTTP request method. If
Request.methodis notNone, return its value, otherwise return'GET'ifRequest.dataisNone, or'POST'if it’s not. This is only meaningful for HTTP requests.3.3 版更變: get_method now looks at the value of
Request.method.
-
Request.add_header(key, val)¶ Add another header to the request. Headers are currently ignored by all handlers except HTTP handlers, where they are added to the list of headers sent to the server. Note that there cannot be more than one header with the same name, and later calls will overwrite previous calls in case the key collides. Currently, this is no loss of HTTP functionality, since all headers which have meaning when used more than once have a (header-specific) way of gaining the same functionality using only one header.
-
Request.add_unredirected_header(key, header)¶ Add a header that will not be added to a redirected request.
-
Request.has_header(header)¶ Return whether the instance has the named header (checks both regular and unredirected).
-
Request.remove_header(header)¶ Remove named header from the request instance (both from regular and unredirected headers).
3.4 版新加入.
-
Request.get_full_url()¶ Return the URL given in the constructor.
3.4 版更變.
Returns
Request.full_url
-
Request.set_proxy(host, type)¶ Prepare the request by connecting to a proxy server. The host and type will replace those of the instance, and the instance’s selector will be the original URL given in the constructor.
-
Request.get_header(header_name, default=None)¶ Return the value of the given header. If the header is not present, return the default value.
-
Request.header_items()¶ Return a list of tuples (header_name, header_value) of the Request headers.
3.4 版更變: The request methods add_data, has_data, get_data, get_type, get_host, get_selector, get_origin_req_host and is_unverifiable that were deprecated since 3.3 have been removed.
22.6.2. OpenerDirector Objects¶
OpenerDirector instances have the following methods:
-
OpenerDirector.add_handler(handler)¶ handler should be an instance of
BaseHandler. The following methods are searched, and added to the possible chains (note that HTTP errors are a special case).protocol_open()— signal that the handler knows how to open protocol URLs.http_error_type()— signal that the handler knows how to handle HTTP errors with HTTP error code type.protocol_error()— signal that the handler knows how to handle errors from (non-http) protocol.protocol_request()— signal that the handler knows how to pre-process protocol requests.protocol_response()— signal that the handler knows how to post-process protocol responses.
-
OpenerDirector.open(url, data=None[, timeout])¶ Open the given url (which can be a request object or a string), optionally passing the given data. Arguments, return values and exceptions raised are the same as those of
urlopen()(which simply calls theopen()method on the currently installed globalOpenerDirector). The optional timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used). The timeout feature actually works only for HTTP, HTTPS and FTP connections).
-
OpenerDirector.error(proto, *args)¶ Handle an error of the given protocol. This will call the registered 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
http_error_*()methods of the handler classes.Return values and exceptions raised are the same as those of
urlopen().
OpenerDirector objects open URLs in three stages:
The order in which these methods are called within each stage is determined by sorting the handler instances.
Every handler with a method named like
protocol_request()has that method called to pre-process the request.Handlers with a method named like
protocol_open()are called to handle the request. This stage ends when a handler either returns a non-Nonevalue (ie. a response), or raises an exception (usuallyURLError). Exceptions are allowed to propagate.In fact, the above algorithm is first tried for methods named
default_open(). If all such methods returnNone, the algorithm is repeated for methods named likeprotocol_open(). If all such methods returnNone, the algorithm is repeated for methods namedunknown_open().Note that the implementation of these methods may involve calls of the parent
OpenerDirectorinstance’sopen()anderror()methods.Every handler with a method named like
protocol_response()has that method called to post-process the response.
22.6.3. BaseHandler Objects¶
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:
-
BaseHandler.add_parent(director)¶ Add a director as parent.
-
BaseHandler.close()¶ Remove any parents.
The following attribute and methods should only be used by classes derived from
BaseHandler.
備註
The convention has been adopted that subclasses defining
protocol_request() or protocol_response() methods are named
*Processor; all others are named *Handler.
-
BaseHandler.parent¶ A valid
OpenerDirector, which can be used to open using a different protocol, or handle errors.
-
BaseHandler.default_open(req)¶ This method is not defined in
BaseHandler, but subclasses should define it if they want to catch all URLs.This method, if implemented, will be called by the parent
OpenerDirector. It should return a file-like object as described in the return value of theopen()ofOpenerDirector, orNone. It should raiseURLError, unless a truly exceptional thing happens (for example,MemoryErrorshould not be mapped toURLError).This method will be called before any protocol-specific open method.
-
BaseHandler.protocol_open(req) This method is not defined in
BaseHandler, but subclasses should define it if they want to handle URLs with the given protocol.This method, if defined, will be called by the parent
OpenerDirector. Return values should be the same as fordefault_open().
-
BaseHandler.unknown_open(req)¶ This method is not defined in
BaseHandler, but subclasses should define it if they want to catch all URLs with no specific registered handler to open it.This method, if implemented, will be called by the
parentOpenerDirector. Return values should be the same as fordefault_open().
-
BaseHandler.http_error_default(req, fp, code, msg, hdrs)¶ This method is not defined in
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 theOpenerDirectorgetting the error, and should not normally be called in other circumstances.req will be a
Requestobject, fp will be a file-like object with the HTTP error body, code will be the three-digit code of the error, msg will be the user-visible explanation of the code and hdrs will be a mapping object with the headers of the error.Return values and exceptions raised should be the same as those of
urlopen().
-
BaseHandler.http_error_nnn(req, fp, code, msg, hdrs)¶ nnn should be a three-digit HTTP error code. This method is also not defined in
BaseHandler, but will be called, if it exists, on an instance of a subclass, when an HTTP error with code nnn occurs.Subclasses should override this method to handle specific HTTP errors.
Arguments, return values and exceptions raised should be the same as for
http_error_default().
-
BaseHandler.protocol_request(req) This method is not defined in
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
OpenerDirector. req will be aRequestobject. The return value should be aRequestobject.
-
BaseHandler.protocol_response(req, response) This method is not defined in
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
OpenerDirector. req will be aRequestobject. response will be an object implementing the same interface as the return value ofurlopen(). The return value should implement the same interface as the return value ofurlopen().
22.6.4. HTTPRedirectHandler Objects¶
備註
Some HTTP redirections require action from this module’s client code. If this
is the case, HTTPError is raised. See RFC 2616 for
details of the precise meanings of the various redirection codes.
An HTTPError exception raised as a security consideration if the
HTTPRedirectHandler is presented with a redirected URL which is not an HTTP,
HTTPS or FTP URL.
-
HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl)¶ Return a
RequestorNonein response to a redirect. This is called by the default implementations of thehttp_error_30*()methods when a redirection is received from the server. If a redirection should take place, return a newRequestto allowhttp_error_30*()to perform the redirect to newurl. Otherwise, raiseHTTPErrorif no other handler should try to handle this URL, or returnNoneif you can’t but another handler might.備註
The default implementation of this method does not strictly follow RFC 2616, which says that 301 and 302 responses to
POSTrequests must not be automatically redirected without confirmation by the user. In reality, browsers do allow automatic redirection of these responses, changing the POST to aGET, and the default implementation reproduces this behavior.
-
HTTPRedirectHandler.http_error_301(req, fp, code, msg, hdrs)¶ Redirect to the
Location:orURI:URL. This method is called by the parentOpenerDirectorwhen getting an HTTP 『moved permanently』 response.
-
HTTPRedirectHandler.http_error_302(req, fp, code, msg, hdrs)¶ The same as
http_error_301(), but called for the 『found』 response.
-
HTTPRedirectHandler.http_error_303(req, fp, code, msg, hdrs)¶ The same as
http_error_301(), but called for the 『see other』 response.
-
HTTPRedirectHandler.http_error_307(req, fp, code, msg, hdrs)¶ The same as
http_error_301(), but called for the 『temporary redirect』 response.
22.6.5. HTTPCookieProcessor Objects¶
HTTPCookieProcessor instances have one attribute:
The
http.cookiejar.CookieJarin which cookies are stored.
22.6.6. ProxyHandler Objects¶
-
ProxyHandler.protocol_open(request) The
ProxyHandlerwill have a methodprotocol_open()for every protocol which has a proxy in the proxies dictionary given in the constructor. The method will modify requests to go through the proxy, by callingrequest.set_proxy(), and call the next handler in the chain to actually execute the protocol.
22.6.7. HTTPPasswordMgr Objects¶
These methods are available on
