API per gli sviluppatori¶
Questa parte della documentazione copre tutte le interfacce di Requests. Le interfacce con librerie esterne sono documentate a grandi linee e vengono forniti link alla loro documentazione canonica.
Interfaccia principale¶
Tutte le funzionalità di Requests sono accessibili da questi 7 metodi.
Tutti ritornano un’istanza dell’oggetto Response.
-
requests.request(method, url, **kwargs)¶ Constructs and sends a
Request.Parametri: - method – method for the new
Requestobject. - url – URL for the new
Requestobject. - params – (optional) Dictionary or bytes to be sent in the query string for the
Request. - data – (optional) Dictionary, bytes, or file-like object to send in the body of the
Request. - json – (optional) json data to send in the body of the
Request. - headers – (optional) Dictionary of HTTP Headers to send with the
Request. - cookies – (optional) Dict or CookieJar object to send with the
Request. - files – (optional) Dictionary of
'name': file-like-objects(or{'name': ('filename', fileobj)}) for multipart encoding upload. - auth – (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
- timeout (float or tuple) – (optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
- allow_redirects (bool) – (optional) Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.
- proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
- verify – (optional) if
True, the SSL cert will be verified. A CA_BUNDLE path can also be provided. - stream – (optional) if
False, the response content will be immediately downloaded. - cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair.
Ritorna: ResponseobjectTipo di ritorno: Usage:
>>> import requests >>> req = requests.request('GET', 'http://httpbin.org/get') <Response [200]>
- method – method for the new
-
requests.head(url, **kwargs)¶ Sends a HEAD request.
Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
Ritorna: ResponseobjectTipo di ritorno: - url – URL for the new
-
requests.get(url, params=None, **kwargs)¶ Sends a GET request.
Parametri: Ritorna: ResponseobjectTipo di ritorno:
-
requests.post(url, data=None, json=None, **kwargs)¶ Sends a POST request.
Parametri: Ritorna: ResponseobjectTipo di ritorno:
-
requests.put(url, data=None, **kwargs)¶ Sends a PUT request.
Parametri: Ritorna: ResponseobjectTipo di ritorno:
-
requests.patch(url, data=None, **kwargs)¶ Sends a PATCH request.
Parametri: Ritorna: ResponseobjectTipo di ritorno:
-
requests.delete(url, **kwargs)¶ Sends a DELETE request.
Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
Ritorna: ResponseobjectTipo di ritorno: - url – URL for the new
Classi di livello più basso¶
-
class
requests.Request(method=None, url=None, headers=None, files=None, data=None, params=None, auth=None, cookies=None, hooks=None, json=None)¶ A user-created
Requestobject.Used to prepare a
PreparedRequest, which is sent to the server.Parametri: - method – HTTP method to use.
- url – URL to send.
- headers – dictionary of headers to send.
- files – dictionary of {filename: fileobject} files to multipart upload.
- data – the body to attach to the request. If a dictionary is provided, form-encoding will take place.
- json – json for the body to attach to the request (if data is not specified).
- params – dictionary of URL parameters to append to the URL.
- auth – Auth handler or (user, pass) tuple.
- cookies – dictionary or CookieJar of cookies to attach to this request.
- hooks – dictionary of callback hooks, for internal usage.
Usage:
>>> import requests >>> req = requests.Request('GET', 'http://httpbin.org/get') >>> req.prepare() <PreparedRequest [GET]>
-
deregister_hook(event, hook)¶ Deregister a previously registered hook. Returns True if the hook existed, False if not.
-
prepare()¶ Constructs a
PreparedRequestfor transmission and returns it.
-
register_hook(event, hook)¶ Properly register a hook.
-
class
requests.Response¶ The
Responseobject, which contains a server’s response to an HTTP request.-
apparent_encoding¶ The apparent encoding, provided by the chardet library
-
close()¶ Releases the connection back to the pool. Once this method has been called the underlying
rawobject must not be accessed again.Note: Should not normally need to be called explicitly.
-
content¶ Content of the response, in bytes.
A CookieJar of Cookies the server sent back.
-
elapsed= None¶ The amount of time elapsed between sending the request and the arrival of the response (as a timedelta). This property specifically measures the time taken between sending the first byte of the request and finishing parsing the headers. It is therefore unaffected by consuming the response content or the value of the
streamkeyword argument.
-
encoding= None¶ Encoding to decode with when accessing r.text.
-
headers= None¶ Case-insensitive Dictionary of Response Headers. For example,
headers['content-encoding']will return the value of a'Content-Encoding'response header.
-
history= None¶ A list of
Responseobjects from the history of the Request. Any redirect responses will end up here. The list is sorted from the oldest to the most recent request.
-
is_permanent_redirect¶ True if this Response one of the permanant versions of redirect
-
is_redirect¶ True if this Response is a well-formed HTTP redirect that could have been processed automatically (by
Session.resolve_redirects()).
-
iter_content(chunk_size=1, decode_unicode=False)¶ Iterates over the response data. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. The chunk size is the number of bytes it should read into memory. This is not necessarily the length of each item returned as decoding can take place.
If decode_unicode is True, content will be decoded using the best available encoding based on the response.
-
iter_lines(chunk_size=512, decode_unicode=None, delimiter=None)¶ Iterates over the response data, one line at a time. When stream=True is set on the request, this avoids reading the content at once into memory for large responses.
Nota
This method is not reentrant safe.
-
json(**kwargs)¶ Returns the json-encoded content of a response, if any.
Parametri: **kwargs – Optional arguments that json.loadstakes.
-
links¶ Returns the parsed header links of the response, if any.
-
raise_for_status()¶ Raises stored
HTTPError, if one occurred.
-
raw= None¶ File-like object representation of response (for advanced usage). Use of
rawrequires thatstream=Truebe set on the request.
-
reason= None¶ Textual reason of responded HTTP Status, e.g. “Not Found” or “OK”.
-
request= None¶ The
PreparedRequestobject to which this is a response.
-
status_code= None¶ Integer Code of responded HTTP Status, e.g. 404 or 200.
-
text¶ Content of the response, in unicode.
If Response.encoding is None, encoding will be guessed using
chardet.The encoding of the response content is determined based solely on HTTP headers, following RFC 2616 to the letter. If you can take advantage of non-HTTP knowledge to make a better guess at the encoding, you should set
r.encodingappropriately before accessing this property.
-
url= None¶ Final URL location of Response.
-
Sessioni¶
-
class
requests.Session¶ A Requests session.
Provides cookie persistence, connection-pooling, and configuration.
Basic Usage:
>>> import requests >>> s = requests.Session() >>> s.get('http://httpbin.org/get') 200
-
cert= None¶ SSL certificate default.
-
close()¶ Closes all adapters and as such the session
A CookieJar containing all currently outstanding cookies set on this session. By default it is a
RequestsCookieJar, but may be any othercookielib.CookieJarcompatible object.
-
delete(url, **kwargs)¶ Sends a DELETE request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
get(url, **kwargs)¶ Sends a GET request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
get_adapter(url)¶ Returns the appropriate connnection adapter for the given URL.
-
head(url, **kwargs)¶ Sends a HEAD request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
headers= None¶ A case-insensitive dictionary of headers to be sent on each
Requestsent from thisSession.
-
hooks= None¶ Event-handling hooks.
-
max_redirects= None¶ Maximum number of redirects allowed. If the request exceeds this limit, a
TooManyRedirectsexception is raised.
-
merge_environment_settings(url, proxies, stream, verify, cert)¶ Check the environment and merge it with some settings.
-
mount(prefix, adapter)¶ Registers a connection adapter to a prefix.
Adapters are sorted in descending order by key length.
-
options(url, **kwargs)¶ Sends a OPTIONS request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
params= None¶ Dictionary of querystring data to attach to each
Request. The dictionary values may be lists for representing multivalued query parameters.
-
post(url, data=None, json=None, **kwargs)¶ Sends a POST request. Returns
Responseobject.Parametri:
-
prepare_request(request)¶ Constructs a
PreparedRequestfor transmission and returns it. ThePreparedRequesthas settings merged from theRequestinstance and those of theSession.Parametri: request – Requestinstance to prepare with this session’s settings.
-
proxies= None¶ Dictionary mapping protocol to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’}) to be used on each
Request.
-
rebuild_auth(prepared_request, response)¶ When being redirected we may want to strip authentication from the request to avoid leaking credentials. This method intelligently removes and reapplies authentication where possible to avoid credential loss.
-
rebuild_proxies(prepared_request, proxies)¶ This method re-evaluates the proxy configuration by considering the environment variables. If we are redirected to a URL covered by NO_PROXY, we strip the proxy configuration. Otherwise, we set missing proxy keys for this URL (in case they were stripped by a previous redirect).
This method also replaces the Proxy-Authorization header where necessary.
-
request(method, url, params=None, data=None, headers=None, cookies=None, files=None, auth=None, timeout=None, allow_redirects=True, proxies=None, hooks=None, stream=None, verify=None, cert=None, json=None)¶ Constructs a
Request, prepares it and sends it. ReturnsResponseobject.Parametri: - method – method for the new
Requestobject. - url – URL for the new
Requestobject. - params – (optional) Dictionary or bytes to be sent in the query
string for the
Request. - data – (optional) Dictionary or bytes to send in the body of the
Request. - json – (optional) json to send in the body of the
Request. - headers – (optional) Dictionary of HTTP Headers to send with the
Request. - cookies – (optional) Dict or CookieJar object to send with the
Request. - files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload. - auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
- timeout (float or tuple) –
(optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
- allow_redirects (bool) – (optional) Set to True by default.
- proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
- stream – (optional) whether to immediately download the response
content. Defaults to
False. - verify – (optional) if
True, the SSL cert will be verified. A CA_BUNDLE path can also be provided. - cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair.
- method – method for the new
-
resolve_redirects(resp, req, stream=False, timeout=None, verify=True, cert=None, proxies=None, **adapter_kwargs)¶ Receives a Response. Returns a generator of Responses.
-
send(request, **kwargs)¶ Send a given PreparedRequest.
-
stream= None¶ Stream response content default.
-
trust_env= None¶ Should we trust the environment?
-
verify= None¶ SSL Verification default.
-
-
class
requests.adapters.HTTPAdapter(pool_connections=10, pool_maxsize=10, max_retries=0, pool_block=False)¶ The built-in HTTP Adapter for urllib3.
Provides a general-case interface for Requests sessions to contact HTTP and HTTPS urls by implementing the Transport Adapter interface. This class will usually be created by the
Sessionclass under the covers.Parametri: - pool_connections – The number of urllib3 connection pools to cache.
- pool_maxsize – The maximum number of connections to save in the pool.
- max_retries (int) – The maximum number of retries each connection
should attempt. Note, this applies only to failed DNS lookups, socket
connections and connection timeouts, never to requests where data has
made it to the server. By default, Requests does not retry failed
connections. If you need granular control over the conditions under
which we retry a request, import urllib3’s
Retryclass and pass that instead. - pool_block – Whether the connection pool should block for connections.
Usage:
>>> import requests >>> s = requests.Session() >>> a = requests.adapters.HTTPAdapter(max_retries=3) >>> s.mount('http://', a)
-
add_headers(request, **kwargs)¶ Add any headers needed by the connection. As of v2.0 this does nothing by default, but is left for overriding by users that subclass the
HTTPAdapter.This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - request – The
PreparedRequestto add headers to. - kwargs – The keyword arguments from the call to send().
- request – The
-
build_response(req, resp)¶ Builds a
Responseobject from a urllib3 response. This should not be called from user code, and is only exposed for use when subclassing theHTTPAdapterParametri: - req – The
PreparedRequestused to generate the response. - resp – The urllib3 response object.
- req – The
-
cert_verify(conn, url, verify, cert)¶ Verify a SSL certificate. This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - conn – The urllib3 connection object associated with the cert.
- url – The requested URL.
- verify – Whether we should actually verify the certificate.
- cert – The SSL certificate to verify.
-
close()¶ Disposes of any internal state.
Currently, this just closes the PoolManager, which closes pooled connections.
-
get_connection(url, proxies=None)¶ Returns a urllib3 connection for the given URL. This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - url – The URL to connect to.
- proxies – (optional) A Requests-style dictionary of proxies used on this request.
-
init_poolmanager(connections, maxsize, block=False, **pool_kwargs)¶ Initializes a urllib3 PoolManager.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - connections – The number of urllib3 connection pools to cache.
- maxsize – The maximum number of connections to save in the pool.
- block – Block when no free connections are available.
- pool_kwargs – Extra keyword arguments used to initialize the Pool Manager.
-
proxy_headers(proxy)¶ Returns a dictionary of the headers to add to any request sent through a proxy. This works with urllib3 magic to ensure that they are correctly sent to the proxy, rather than in a tunnelled request if CONNECT is being used.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - proxies – The url of the proxy being used for this request.
- kwargs – Optional additional keyword arguments.
-
proxy_manager_for(proxy, **proxy_kwargs)¶ Return urllib3 ProxyManager for the given proxy.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - proxy – The proxy to return a urllib3 ProxyManager for.
- proxy_kwargs – Extra keyword arguments used to configure the Proxy Manager.
Ritorna: ProxyManager
-
request_url(request, proxies)¶ Obtain the url to use when making the final request.
If the message is being sent through a HTTP proxy, the full URL has to be used. Otherwise, we should only use the path portion of the URL.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - request – The
PreparedRequestbeing sent. - proxies – A dictionary of schemes to proxy URLs.
- request – The
-
send(request, stream=False, timeout=None, verify=True, cert=None, proxies=None)¶ Sends PreparedRequest object. Returns Response object.
Parametri: - request – The
PreparedRequestbeing sent. - stream – (optional) Whether to stream the request content.
- timeout (float or tuple) –
(optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
- verify – (optional) Whether to verify SSL certificates.
- cert – (optional) Any user-provided SSL certificate to be trusted.
- proxies – (optional) The proxies dictionary to apply to the request.
- request – The
Autenticazione¶
-
class
requests.auth.AuthBase¶ Base class that all auth implementations derive from
-
class
requests.auth.HTTPBasicAuth(username, password)¶ Attaches HTTP Basic Authentication to the given Request object.
-
class
requests.auth.HTTPProxyAuth(username, password)¶ Attaches HTTP Proxy Authentication to a given Request object.
-
class
requests.auth.HTTPDigestAuth(username, password)¶ Attaches HTTP Digest Authentication to the given Request object.
Eccezioni¶
-
exception
requests.exceptions.RequestException(*args, **kwargs)¶ There was an ambiguous exception that occurred while handling your request.
-
exception
requests.exceptions.ConnectionError(*args, **kwargs)¶ A Connection error occurred.
-
exception
requests.exceptions.HTTPError(*args, **kwargs)¶ An HTTP error occurred.
-
exception
requests.exceptions.URLRequired(*args, **kwargs)¶ A valid URL is required to make a request.
-
exception
requests.exceptions.TooManyRedirects(*args, **kwargs)¶ Too many redirects.
-
exception
requests.exceptions.ConnectTimeout(*args, **kwargs)¶ The request timed out while trying to connect to the remote server.
Requests that produced this error are safe to retry.
-
exception
requests.exceptions.ReadTimeout(*args, **kwargs)¶ The server did not send any data in the allotted amount of time.
-
exception
requests.exceptions.Timeout(*args, **kwargs)¶ The request timed out.
Catching this error will catch both
ConnectTimeoutandReadTimeouterrors.
Ricerca degli status code¶
-
requests.codes()¶ Dictionary lookup object.
>>> requests.codes['temporary_redirect']
307
>>> requests.codes.teapot
418
>>> requests.codes['\o/']
200
Cookie¶
Returns a key/value dictionary from a CookieJar.
Parametri: cj – CookieJar object to extract cookies from.
Returns a CookieJar from a key/value dictionary.
Parametri: - cookie_dict – Dict of key/values to insert into CookieJar.
- cookiejar – (optional) A cookiejar to add the cookies to.
- overwrite – (optional) If False, will not replace cookies already in the jar with new ones.
Returns a CookieJar from a key/value dictionary.
Parametri: - cj – CookieJar to insert cookies into.
- cookie_dict – Dict of key/values to insert into CookieJar.
Compatibility class; is a cookielib.CookieJar, but exposes a dict interface.
This is the CookieJar we create by default for requests and sessions that don’t specify one, since some clients may expect response.cookies and session.cookies to support dict operations.
Requests does not use the dict interface internally; it’s just for compatibility with external client code. All requests code should work out of the box with externally provided instances of
CookieJar, e.g.LWPCookieJarandFileCookieJar.Unlike a regular CookieJar, this class is pickleable.
Avvertimento
dictionary operations that are normally O(1) may be O(n).
Add correct Cookie: header to request (urllib2.Request object).
The Cookie2 header is also added unless policy.hide_cookie2 is true.
Clear some cookies.
Invoking this method without arguments will clear all cookies. If given a single argument, only cookies belonging to that domain will be removed. If given two arguments, cookies belonging to the specified path within that domain are removed. If given three arguments, then the cookie with the specified name, path and domain is removed.
Raises KeyError if no matching cookie exists.
Discard all expired cookies.
You probably don’t need to call this method: expired cookies are never sent back to the server (provided you’re using DefaultCookiePolicy), this method is called by CookieJar itself every so often, and the .save() method won’t save expired cookies anyway (unless you ask otherwise by passing a true ignore_expires argument).
Discard all session cookies.
Note that the .save() method won’t save session cookies anyway, unless you ask otherwise by passing a true ignore_discard argument.
Return a copy of this RequestsCookieJar.
Extract cookies from response, where allowable given the request.
Dict-like get() that also supports optional domain and path args in order to resolve naming collisions from using one cookie jar over multiple domains.
Avvertimento
operation is O(n), not O(1).
Takes as an argument an optional domain and path and returns a plain old Python dict of name-value pairs of cookies that meet the requirements.
Dict-like items() that returns a list of name-value tuples from the jar. See keys() and values(). Allows client-code to call
dict(RequestsCookieJar)and get a vanilla python dict of key value pairs.
Dict-like iteritems() that returns an iterator of name-value tuples from the jar. See iterkeys() and itervalues().
Dict-like iterkeys() that returns an iterator of names of cookies from the jar. See itervalues() and iteritems().
Dict-like itervalues() that returns an iterator of values of cookies from the jar. See iterkeys() and iteritems().
Dict-like keys() that returns a list of names of cookies from the jar. See values() and items().
Utility method to list all the domains in the jar.
Utility method to list all the paths in the jar.
Return sequence of Cookie objects extracted from response object.
Returns True if there are multiple domains in the jar. Returns False otherwise.
If key is not found, d is returned if given, otherwise KeyError is raised.
as a 2-tuple; but raise KeyError if D is empty.
Dict-like set() that also supports optional domain and path args in order to resolve naming collisions from using one cookie jar over multiple domains.
Set a cookie if policy says it’s OK to do so.
Updates this jar with cookies from another CookieJar or dict-like
Dict-like values() that returns a list of values of cookies from the jar. See keys() and items().
There are two cookies that meet the criteria specified in the cookie jar. Use .get and .set and include domain and path args in order to be more specific.
Encoding¶
-
requests.utils.get_encodings_from_content(content)¶ Returns encodings from given content string.
Parametri: content – bytestring to extract encodings from.
-
requests.utils.get_encoding_from_headers(headers)¶ Returns encodings from given HTTP Header Dict.
Parametri: headers – dictionary to extract encoding from.
-
requests.utils.get_unicode_from_response(r)¶ Returns the requested content back in unicode.
Parametri: r – Response object to get unicode content from. Tried:
- charset from content-type
- fall back and replace all unicode characters
Classi¶
-
class
requests.Response The
Responseobject, which contains a server’s response to an HTTP request.-
apparent_encoding The apparent encoding, provided by the chardet library
-
close() Releases the connection back to the pool. Once this method has been called the underlying
rawobject must not be accessed again.Note: Should not normally need to be called explicitly.
-
content Content of the response, in bytes.
-
cookies= None A CookieJar of Cookies the server sent back.
-
elapsed= None The amount of time elapsed between sending the request and the arrival of the response (as a timedelta). This property specifically measures the time taken between sending the first byte of the request and finishing parsing the headers. It is therefore unaffected by consuming the response content or the value of the
streamkeyword argument.
-
encoding= None Encoding to decode with when accessing r.text.
-
headers= None Case-insensitive Dictionary of Response Headers. For example,
headers['content-encoding']will return the value of a'Content-Encoding'response header.
-
history= None A list of
Responseobjects from the history of the Request. Any redirect responses will end up here. The list is sorted from the oldest to the most recent request.
-
is_permanent_redirect True if this Response one of the permanant versions of redirect
-
is_redirect True if this Response is a well-formed HTTP redirect that could have been processed automatically (by
Session.resolve_redirects()).
-
iter_content(chunk_size=1, decode_unicode=False) Iterates over the response data. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. The chunk size is the number of bytes it should read into memory. This is not necessarily the length of each item returned as decoding can take place.
If decode_unicode is True, content will be decoded using the best available encoding based on the response.
-
iter_lines(chunk_size=512, decode_unicode=None, delimiter=None) Iterates over the response data, one line at a time. When stream=True is set on the request, this avoids reading the content at once into memory for large responses.
Nota
This method is not reentrant safe.
-
json(**kwargs) Returns the json-encoded content of a response, if any.
Parametri: **kwargs – Optional arguments that json.loadstakes.
-
links Returns the parsed header links of the response, if any.
-
raise_for_status() Raises stored
HTTPError, if one occurred.
-
raw= None File-like object representation of response (for advanced usage). Use of
rawrequires thatstream=Truebe set on the request.
-
reason= None Textual reason of responded HTTP Status, e.g. “Not Found” or “OK”.
-
request= None The
PreparedRequestobject to which this is a response.
-
status_code= None Integer Code of responded HTTP Status, e.g. 404 or 200.
-
text Content of the response, in unicode.
If Response.encoding is None, encoding will be guessed using
chardet.The encoding of the response content is determined based solely on HTTP headers, following RFC 2616 to the letter. If you can take advantage of non-HTTP knowledge to make a better guess at the encoding, you should set
r.encodingappropriately before accessing this property.
-
url= None Final URL location of Response.
-
-
class
requests.Request(method=None, url=None, headers=None, files=None, data=None, params=None, auth=None, cookies=None, hooks=None, json=None) A user-created
Requestobject.Used to prepare a
PreparedRequest, which is sent to the server.Parametri: - method – HTTP method to use.
- url – URL to send.
- headers – dictionary of headers to send.
- files – dictionary of {filename: fileobject} files to multipart upload.
- data – the body to attach to the request. If a dictionary is provided, form-encoding will take place.
- json – json for the body to attach to the request (if data is not specified).
- params – dictionary of URL parameters to append to the URL.
- auth – Auth handler or (user, pass) tuple.
- cookies – dictionary or CookieJar of cookies to attach to this request.
- hooks – dictionary of callback hooks, for internal usage.
Usage:
>>> import requests >>> req = requests.Request('GET', 'http://httpbin.org/get') >>> req.prepare() <PreparedRequest [GET]>
-
deregister_hook(event, hook) Deregister a previously registered hook. Returns True if the hook existed, False if not.
-
prepare() Constructs a
PreparedRequestfor transmission and returns it.
-
register_hook(event, hook) Properly register a hook.
-
class
requests.PreparedRequest¶ The fully mutable
PreparedRequestobject, containing the exact bytes that will be sent to the server.Generated from either a
Requestobject or manually.Usage:
>>> import requests >>> req = requests.Request('GET', 'http://httpbin.org/get') >>> r = req.prepare() <PreparedRequest [GET]> >>> s = requests.Session() >>> s.send(r) <Response [200]>
-
body= None¶ request body to send to the server.
-
deregister_hook(event, hook)¶ Deregister a previously registered hook. Returns True if the hook existed, False if not.
-
headers= None¶ dictionary of HTTP headers.
-
hooks= None¶ dictionary of callback hooks, for internal usage.
-
method= None¶ HTTP verb to send to the server.
-
path_url¶ Build the path URL to use.
-
prepare(method=None, url=None, headers=None, files=None, data=None, params=None, auth=None, cookies=None, hooks=None, json=None)¶ Prepares the entire request with the given parameters.
-
prepare_auth(auth, url='')¶ Prepares the given HTTP auth data.
-
prepare_body(data, files, json=None)¶ Prepares the given HTTP body data.
Prepares the given HTTP cookie data.
This function eventually generates a
Cookieheader from the given cookies using cookielib. Due to cookielib’s design, the header will not be regenerated if it already exists, meaning this function can only be called once for the life of thePreparedRequestobject. Any subsequent calls toprepare_cookieswill have no actual effect, unless the “Cookie” header is removed beforehand.
-
prepare_headers(headers)¶ Prepares the given HTTP headers.
-
prepare_hooks(hooks)¶ Prepares the given hooks.
-
prepare_method(method)¶ Prepares the given HTTP method.
-
prepare_url(url, params)¶ Prepares the given HTTP URL.
-
register_hook(event, hook)¶ Properly register a hook.
-
url= None¶ HTTP URL to send the request to.
-
-
class
requests.Session A Requests session.
Provides cookie persistence, connection-pooling, and configuration.
Basic Usage:
>>> import requests >>> s = requests.Session() >>> s.get('http://httpbin.org/get') 200
-
auth= None Default Authentication tuple or object to attach to
Request.
-
cert= None SSL certificate default.
-
close() Closes all adapters and as such the session
-
cookies= None A CookieJar containing all currently outstanding cookies set on this session. By default it is a
RequestsCookieJar, but may be any othercookielib.CookieJarcompatible object.
-
delete(url, **kwargs) Sends a DELETE request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
get(url, **kwargs) Sends a GET request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
get_adapter(url) Returns the appropriate connnection adapter for the given URL.
-
head(url, **kwargs) Sends a HEAD request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
headers= None A case-insensitive dictionary of headers to be sent on each
Requestsent from thisSession.
-
hooks= None Event-handling hooks.
-
max_redirects= None Maximum number of redirects allowed. If the request exceeds this limit, a
TooManyRedirectsexception is raised.
-
merge_environment_settings(url, proxies, stream, verify, cert) Check the environment and merge it with some settings.
-
mount(prefix, adapter) Registers a connection adapter to a prefix.
Adapters are sorted in descending order by key length.
-
options(url, **kwargs) Sends a OPTIONS request. Returns
Responseobject.Parametri: - url – URL for the new
Requestobject. - **kwargs – Optional arguments that
requesttakes.
- url – URL for the new
-
params= None Dictionary of querystring data to attach to each
Request. The dictionary values may be lists for representing multivalued query parameters.
-
patch(url, data=None, **kwargs) Sends a PATCH request. Returns
Responseobject.Parametri:
-
post(url, data=None, json=None, **kwargs) Sends a POST request. Returns
Responseobject.Parametri:
-
prepare_request(request) Constructs a
PreparedRequestfor transmission and returns it. ThePreparedRequesthas settings merged from theRequestinstance and those of theSession.Parametri: request – Requestinstance to prepare with this session’s settings.
-
proxies= None Dictionary mapping protocol to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’}) to be used on each
Request.
-
put(url, data=None, **kwargs) Sends a PUT request. Returns
Responseobject.Parametri:
-
rebuild_auth(prepared_request, response) When being redirected we may want to strip authentication from the request to avoid leaking credentials. This method intelligently removes and reapplies authentication where possible to avoid credential loss.
-
rebuild_proxies(prepared_request, proxies) This method re-evaluates the proxy configuration by considering the environment variables. If we are redirected to a URL covered by NO_PROXY, we strip the proxy configuration. Otherwise, we set missing proxy keys for this URL (in case they were stripped by a previous redirect).
This method also replaces the Proxy-Authorization header where necessary.
-
request(method, url, params=None, data=None, headers=None, cookies=None, files=None, auth=None, timeout=None, allow_redirects=True, proxies=None, hooks=None, stream=None, verify=None, cert=None, json=None) Constructs a
Request, prepares it and sends it. ReturnsResponseobject.Parametri: - method – method for the new
Requestobject. - url – URL for the new
Requestobject. - params – (optional) Dictionary or bytes to be sent in the query
string for the
Request. - data – (optional) Dictionary or bytes to send in the body of the
Request. - json – (optional) json to send in the body of the
Request. - headers – (optional) Dictionary of HTTP Headers to send with the
Request. - cookies – (optional) Dict or CookieJar object to send with the
Request. - files – (optional) Dictionary of
'filename': file-like-objectsfor multipart encoding upload. - auth – (optional) Auth tuple or callable to enable Basic/Digest/Custom HTTP Auth.
- timeout (float or tuple) –
(optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
- allow_redirects (bool) – (optional) Set to True by default.
- proxies – (optional) Dictionary mapping protocol to the URL of the proxy.
- stream – (optional) whether to immediately download the response
content. Defaults to
False. - verify – (optional) if
True, the SSL cert will be verified. A CA_BUNDLE path can also be provided. - cert – (optional) if String, path to ssl client cert file (.pem). If Tuple, (‘cert’, ‘key’) pair.
- method – method for the new
-
resolve_redirects(resp, req, stream=False, timeout=None, verify=True, cert=None, proxies=None, **adapter_kwargs) Receives a Response. Returns a generator of Responses.
-
send(request, **kwargs) Send a given PreparedRequest.
-
stream= None Stream response content default.
-
trust_env= None Should we trust the environment?
-
verify= None SSL Verification default.
-
-
class
requests.adapters.HTTPAdapter(pool_connections=10, pool_maxsize=10, max_retries=0, pool_block=False) The built-in HTTP Adapter for urllib3.
Provides a general-case interface for Requests sessions to contact HTTP and HTTPS urls by implementing the Transport Adapter interface. This class will usually be created by the
Sessionclass under the covers.Parametri: - pool_connections – The number of urllib3 connection pools to cache.
- pool_maxsize – The maximum number of connections to save in the pool.
- max_retries (int) – The maximum number of retries each connection
should attempt. Note, this applies only to failed DNS lookups, socket
connections and connection timeouts, never to requests where data has
made it to the server. By default, Requests does not retry failed
connections. If you need granular control over the conditions under
which we retry a request, import urllib3’s
Retryclass and pass that instead. - pool_block – Whether the connection pool should block for connections.
Usage:
>>> import requests >>> s = requests.Session() >>> a = requests.adapters.HTTPAdapter(max_retries=3) >>> s.mount('http://', a)
-
add_headers(request, **kwargs) Add any headers needed by the connection. As of v2.0 this does nothing by default, but is left for overriding by users that subclass the
HTTPAdapter.This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - request – The
PreparedRequestto add headers to. - kwargs – The keyword arguments from the call to send().
- request – The
-
build_response(req, resp) Builds a
Responseobject from a urllib3 response. This should not be called from user code, and is only exposed for use when subclassing theHTTPAdapterParametri: - req – The
PreparedRequestused to generate the response. - resp – The urllib3 response object.
- req – The
-
cert_verify(conn, url, verify, cert) Verify a SSL certificate. This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - conn – The urllib3 connection object associated with the cert.
- url – The requested URL.
- verify – Whether we should actually verify the certificate.
- cert – The SSL certificate to verify.
-
close() Disposes of any internal state.
Currently, this just closes the PoolManager, which closes pooled connections.
-
get_connection(url, proxies=None) Returns a urllib3 connection for the given URL. This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - url – The URL to connect to.
- proxies – (optional) A Requests-style dictionary of proxies used on this request.
-
init_poolmanager(connections, maxsize, block=False, **pool_kwargs) Initializes a urllib3 PoolManager.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - connections – The number of urllib3 connection pools to cache.
- maxsize – The maximum number of connections to save in the pool.
- block – Block when no free connections are available.
- pool_kwargs – Extra keyword arguments used to initialize the Pool Manager.
-
proxy_headers(proxy) Returns a dictionary of the headers to add to any request sent through a proxy. This works with urllib3 magic to ensure that they are correctly sent to the proxy, rather than in a tunnelled request if CONNECT is being used.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - proxies – The url of the proxy being used for this request.
- kwargs – Optional additional keyword arguments.
-
proxy_manager_for(proxy, **proxy_kwargs) Return urllib3 ProxyManager for the given proxy.
This method should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - proxy – The proxy to return a urllib3 ProxyManager for.
- proxy_kwargs – Extra keyword arguments used to configure the Proxy Manager.
Ritorna: ProxyManager
-
request_url(request, proxies) Obtain the url to use when making the final request.
If the message is being sent through a HTTP proxy, the full URL has to be used. Otherwise, we should only use the path portion of the URL.
This should not be called from user code, and is only exposed for use when subclassing the
HTTPAdapter.Parametri: - request – The
PreparedRequestbeing sent. - proxies – A dictionary of schemes to proxy URLs.
- request – The
-
send(request, stream=False, timeout=None, verify=True, cert=None, proxies=None) Sends PreparedRequest object. Returns Response object.
Parametri: - request – The
PreparedRequestbeing sent. - stream – (optional) Whether to stream the request content.
- timeout (float or tuple) –
(optional) How long to wait for the server to send data before giving up, as a float, or a (connect timeout, read timeout) tuple.
- verify – (optional) Whether to verify SSL certificates.
- cert – (optional) Any user-provided SSL certificate to be trusted.
- proxies – (optional) The proxies dictionary to apply to the request.
- request – The
Migrazione alla versione 1.x¶
Questa sezione illustra le principali differenze tra le versioni 0.x e 1.x e il suo scopo è facilitare l’upgrading.
Cambiamenti nell’API¶
Response.jsonora è una callable e non più una property di una response.import requests r = requests.get('https://github.com/timeline.json') r.json() # Questa *chiamata* lancia un'eccezione se il decoding del JSON fallisce
La
SessionAPI è cambiata. Gli oggetti Sessione non accettano più parametri.Sessionora è indicata con la lettera maiuscola ma può ancora essere istanziata tramitesessioncon l’iniziale minuscola per retrocompatibilità.s = requests.Session() # prima, le sessioni accettavano parametri s.auth = auth s.headers.update(headers) r = s.get('http://httpbin.org/headers')
Sono stati rimossi tutti gli hook delle richieste tranne ‘response’.
Le funzioni di supporto all’autenticazione sono state spostate in moduli separati. Si vedano requests-oauthlib e requests-kerberos.
Il nome del parametro per le richieste streaming è cambiato da
prefetchastreame la logica è stata invertita. In più,streamviene ora richiesto per la lettura delle risposte raw.# nella versione 0.x, il passaggio di prefetch=False avrebbe dato lo stesso risultato r = requests.get('https://github.com/timeline.json', stream=True) for chunk in r.iter_content(8192): ...
Il parametro
configdella funzione requests è stato rimosso. Alcune delle opzioni vengono ora configurate su unaSession(es: keep-alive e numero massimo di redirezioni). L’opzione di verbosità dovrebbe essere gestita tramite configurazione del logging.import requests import logging # queste due righe abilitano il debugging a livello di httplib (requests->urllib3->httplib) # si vedranno la REQUEST, con HEADERS e DATA, e la RESPONSE con gli HEADERS ma senza DATA. # l'unico elemento mancante è il response.body che non viene loggato. import httplib httplib.HTTPConnection.debuglevel = 1 logging.basicConfig() # occorre inizializzare il logging, altrimenti non si vedrà nulla delle richieste logging.getLogger().setLevel(logging.DEBUG) requests_log = logging.getLogger("requests.packages.urllib3") requests_log.setLevel(logging.DEBUG) requests_log.propagate = True requests.get('http://httpbin.org/headers')
Licenza¶
Una differenza fondamentale che non impatta l’API è il cambio di licenza da ISC ad Apache 2.0 . La licenza Apache 2.0 garantisce che i contributi a Requests siano anch’essi licenziati con Apache 2.0.
Migrazione alla versione 2.x¶
Rispetto alla release 1.0, ci sono state relativamente poche modifiche non retrocompatibili ma ci sono ancora alcuni problemi di questa major release di cui è bene sapere.
Per ulteriore dettaglio sulle modifiche in questa release, comprese nuove APIs, link alle issues relative su GitHub e il fixing di alcuni bachi, si legga il blog di Cory.
Modifiche nell’API¶
Ci sono stati un paio di modifiche sul modo con cui Requests gestisce le eccezioni.
RequestExceptionora è una sottoclasse diIOErrorinvece che diRuntimeErrorperchè così viene meglio indicato il tipo di situazione erronea. In più, ora una sequenza di escaping degli URL non valida solleva l’istanza di una sottoclasse diRequestExceptionpiuttosto che diValueError.requests.get('http://%zz/') # solleva requests.exceptions.InvalidURL
Infine, le eccezioni di tipo
httplib.IncompleteReadcausate da un encoding scorretto sui chunks sollevano ora un’istanza diChunkedEncodingErrordi Requests.L’API per i proxy è stata modificata lievemente. Viene ora richiesto di specificare lo schema per l’URL dei proxy.
proxies = { "http": "10.10.1.10:3128", # ora va utilizzato http://10.10.1.10:3128 } # Nelle versioni 1.x di requests, questo codice era eseguito senza problemi mentre # nelle versioni 2.x solleva un'eccezione requests.exceptions.MissingSchema requests.get("http://example.org", proxies=proxies)
Modifiche al comportamento¶
- Le chiavi nel dizionario
headerssono ora stringhe native in tutte le versioni di Python es. bytestrings in Python 2 e unicode in Python 3. Se le chiavi non sono stringhe native (unicode in Python2 oppure bytestrings in Python 3), queste vengono convertite in stringhe native utilizzando UTF-8 come encoding.