2019独角兽企业重金招聘Python工程师标准>>>

主要接口

Requests 所有的功能都可以通过以下 7 个方法访问。它们全部都会返回一个 Response 对象的实例。

requests.request(methodurl**kwargs)[源代码]

Constructs and sends a Request.

参数:
  • method -- method for the new Request object.
  • url -- URL for the new Request object.
  • 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': file-tuple}) for multipart encoding upload. file-tuple can be a 2-tuple ('filename', fileobj), 3-tuple ('filename', fileobj, 'content_type') or a 4-tuple ('filename', fileobj,'content_type', custom_headers), where 'content-type' is a string defining the content type of the given file and custom_headers a dict-like object containing additional headers to add for the file.
  • 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) whether the SSL cert will be verified. A CA_BUNDLE path can also be provided. Defaults to True.
  • 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.
返回:

Response object

返回类型:

requests.Response

Usage:

>>> import requests
>>> req = requests.request('GET', 'http://httpbin.org/get')
<Response [200]>

requests.head(url**kwargs)[源代码]

Sends a HEAD request.

参数:
  • url -- URL for the new Request object.
  • **kwargs -- Optional arguments that request takes.
返回:

Response object

返回类型:

requests.Response

requests.get(urlparams=None**kwargs)[源代码]

Sends a GET request.

参数:
  • url -- URL for the new Request object.
  • params -- (optional) Dictionary or bytes to be sent in the query string for the Request.
  • **kwargs -- Optional arguments that request takes.
返回:

Response object

返回类型:

requests.Response

requests.post(urldata=Nonejson=None**kwargs)[源代码]

Sends a POST request.

参数:
  • url -- URL for the new Request object.
  • 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.
  • **kwargs -- Optional arguments that request takes.
返回:

Response object

返回类型:

requests.Response

requests.put(urldata=None**kwargs)[源代码]

Sends a PUT request.

参数:
  • url -- URL for the new Request object.
  • data -- (optional) Dictionary, bytes, or file-like object to send in the body of the Request.
  • **kwargs -- Optional arguments that request takes.
返回:

Response object

返回类型:

requests.Response

requests.patch(urldata=None**kwargs)[源代码]

Sends a PATCH request.

参数:
  • url -- URL for the new Request object.
  • data -- (optional) Dictionary, bytes, or file-like object to send in the body of the Request.
  • **kwargs -- Optional arguments that request takes.
返回:

Response object

返回类型:

requests.Response

requests.delete(url**kwargs)[源代码]

Sends a DELETE request.

参数:
  • url -- URL for the new Request object.
  • **kwargs -- Optional arguments that request takes.
返回:

Response object

返回类型:

requests.Response

异常

exception requests.RequestException(*args**kwargs)[源代码]

There was an ambiguous exception that occurred while handling your request.

exception requests.ConnectionError(*args**kwargs)[源代码]

A Connection error occurred.

exception requests.HTTPError(*args**kwargs)[源代码]

An HTTP error occurred.

exception requests.URLRequired(*args**kwargs)[源代码]

A valid URL is required to make a request.

exception requests.TooManyRedirects(*args**kwargs)[源代码]

Too many redirects.

exception requests.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.ReadTimeout(*args**kwargs)[源代码]

The server did not send any data in the allotted amount of time.

exception requests.Timeout(*args**kwargs)[源代码]

The request timed out.

Catching this error will catch both ConnectTimeout and ReadTimeout errors.

请求会话

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')
<Response [200]>

Or as a context manager:

>>> with requests.Session() as s:
>>>     s.get('http://httpbin.org/get')
<Response [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 aRequestsCookieJar, but may be any other cookielib.CookieJar compatible object.

delete(url**kwargs)[源代码]

Sends a DELETE request. Returns Response object.

参数:
  • url -- URL for the new Request object.
  • **kwargs -- Optional arguments that request takes.

get(url**kwargs)[源代码]

Sends a GET request. Returns Response object.

参数:
  • url -- URL for the new Request object.
  • **kwargs -- Optional arguments that request takes.

get_adapter(url)[源代码]

Returns the appropriate connection adapter for the given URL.

head(url**kwargs)[源代码]

Sends a HEAD request. Returns Response object.

参数:
  • url -- URL for the new Request object.
  • **kwargs -- Optional arguments that request takes.

headers = None

A case-insensitive dictionary of headers to be sent on each Request sent from this Session.

hooks = None

Event-handling hooks.

max_redirects = None

Maximum number of redirects allowed. If the request exceeds this limit, a TooManyRedirectsexception is raised. This defaults to requests.models.DEFAULT_REDIRECT_LIMIT, which is 30.

merge_environment_settings(urlproxiesstreamverifycert)[源代码]

Check the environment and merge it with some settings.

mount(prefixadapter)[源代码]

Registers a connection adapter to a prefix.

Adapters are sorted in descending order by key length.

options(url**kwargs)[源代码]

Sends a OPTIONS request. Returns Response object.

参数:
  • url -- URL for the new Request object.
  • **kwargs -- Optional arguments that request takes.

params = None

Dictionary of querystring data to attach to each Request. The dictionary values may be lists for representing multivalued query parameters.

patch(urldata=None**kwargs)[源代码]

Sends a PATCH request. Returns Response object.

参数:
  • url -- URL for the new Request object.
  • data -- (optional) Dictionary, bytes, or file-like object to send in the body of the Request.
  • **kwargs -- Optional arguments that request takes.

post(urldata=Nonejson=None**kwargs)[源代码]

Sends a POST request. Returns Response object.

参数:
  • url -- URL for the new Request object.
  • data -- (optional) Dictionary, bytes, or file-like object to send in the body of the Request.
  • json -- (optional) json to send in the body of the Request.
  • **kwargs -- Optional arguments that request takes.

prepare_request(request)[源代码]

Constructs a PreparedRequest for transmission and returns it. The PreparedRequest has settings merged from the Request instance and those of the Session.

参数: request -- Request instance to prepare with this session's settings.

proxies = None

Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) to be used on each Request.

put(urldata=None**kwargs)[源代码]

Sends a PUT request. Returns Response object.

参数:
  • url -- URL for the new Request object.
  • data -- (optional) Dictionary, bytes, or file-like object to send in the body of the Request.
  • **kwargs -- Optional arguments that request takes.

rebuild_auth(prepared_requestresponse)

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_method(prepared_requestresponse)

When being redirected we may want to change the method of the request based on certain specs or browser behavior.

rebuild_proxies(prepared_requestproxies)

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(methodurlparams=Nonedata=Noneheaders=Nonecookies=Nonefiles=Noneauth=Nonetimeout=Noneallow_redirects=Trueproxies=Nonehooks=Nonestream=Noneverify=Nonecert=Nonejson=None)[源代码]

Constructs a Request, prepares it and sends it. Returns Response object.

参数:
  • method -- method for the new Request object.
  • url -- URL for the new Request object.
  • 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 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-objects for 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 or protocol and hostname to the URL of the proxy.
  • stream -- (optional) whether to immediately download the response content. Defaults to False.
  • verify -- (optional) whether the SSL cert will be verified. A CA_BUNDLE path can also be provided. Defaults to True.
  • cert -- (optional) if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair.
返回类型:

requests.Response

resolve_redirects(respreqstream=Falsetimeout=Noneverify=Truecert=Noneproxies=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

Trust environment settings for proxy configuration, default authentication and similar.

verify = None

SSL Verification default.

低级类

class requests.Request(method=Noneurl=Noneheaders=Nonefiles=Nonedata=Noneparams=Noneauth=Nonecookies=Nonehooks=Nonejson=None)[源代码]

A user-created Request object.

Used to prepare a PreparedRequest, which is sent to the server.

参数:
  • 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 files or 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(eventhook)

Deregister a previously registered hook. Returns True if the hook existed, False if not.

prepare()[源代码]

Constructs a PreparedRequest for transmission and returns it.

register_hook(eventhook)

Properly register a hook.

class requests.Response[源代码]

The Response object, 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 stream keyword 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 Response objects 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 permanent 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=1decode_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.

chunk_size must be of type int or None. A value of None will function differently depending on the value of stream. stream=True will read data as it arrives in whatever size the chunks are recieved. If stream=False, data is returned as a single chunk.

If decode_unicode is True, content will be decoded using the best available encoding based on the response.

iter_lines(chunk_size=512decode_unicode=Nonedelimiter=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.

注解

This method is not reentrant safe.

json(**kwargs)[源代码]

Returns the json-encoded content of a response, if any.

参数: **kwargs -- Optional arguments that json.loads takes.

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 raw requires that stream=True be set on the request.

reason = None

Textual reason of responded HTTP Status, e.g. "Not Found" or "OK".

request = None

The PreparedRequest object 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.encoding appropriately before accessing this property.

url = None

Final URL location of Response.

更低级的类

class requests.PreparedRequest[源代码]

The fully mutable PreparedRequest object, containing the exact bytes that will be sent to the server.

Generated from either a Request object 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(eventhook)

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=Noneurl=Noneheaders=Nonefiles=Nonedata=Noneparams=Noneauth=Nonecookies=Nonehooks=Nonejson=None)[源代码]

Prepares the entire request with the given parameters.

prepare_auth(authurl='')[源代码]

Prepares the given HTTP auth data.

prepare_body(datafilesjson=None)[源代码]

Prepares the given HTTP body data.

prepare_cookies(cookies)[源代码]

Prepares the given HTTP cookie data.

This function eventually generates a Cookie header 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 the PreparedRequest object. Any subsequent calls to prepare_cookies will 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(urlparams)[源代码]

Prepares the given HTTP URL.

register_hook(eventhook)

Properly register a hook.

url = None

HTTP URL to send the request to.

class requests.adapters.HTTPAdapter(pool_connections=10pool_maxsize=10max_retries=0pool_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 Session class under the covers.

参数:
  • pool_connections -- The number of urllib3 connection pools to cache.
  • pool_maxsize -- The maximum number of connections to save in the pool.
  • max_retries -- 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 Retry class 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 theHTTPAdapter.

参数:
  • request -- The PreparedRequest to add headers to.
  • kwargs -- The keyword arguments from the call to send().

build_response(reqresp)[源代码]

Builds a Response object from a urllib3 response. This should not be called from user code, and is only exposed for use when subclassing the HTTPAdapter

参数:
  • req -- The PreparedRequest used to generate the response.
  • resp -- The urllib3 response object.

cert_verify(connurlverifycert)[源代码]

Verify a SSL certificate. This method should not be called from user code, and is only exposed for use when subclassing the HTTPAdapter.

参数:
  • 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 closes the PoolManager and any active ProxyManager, which closes any pooled connections.

get_connection(urlproxies=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.

参数:
  • url -- The URL to connect to.
  • proxies -- (optional) A Requests-style dictionary of proxies used on this request.

init_poolmanager(connectionsmaxsizeblock=False**pool_kwargs)[源代码]

Initializes a urllib3 PoolManager.

This method should not be called from user code, and is only exposed for use when subclassing theHTTPAdapter.

参数:
  • 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 theHTTPAdapter.

参数: proxies -- The url of the proxy being used for this request.

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 theHTTPAdapter.

参数:
  • proxy -- The proxy to return a urllib3 ProxyManager for.
  • proxy_kwargs -- Extra keyword arguments used to configure the Proxy Manager.
返回:

ProxyManager

request_url(requestproxies)[源代码]

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 theHTTPAdapter.

参数:
  • request -- The PreparedRequest being sent.
  • proxies -- A dictionary of schemes or schemes and hosts to proxy URLs.

send(requeststream=Falsetimeout=Noneverify=Truecert=Noneproxies=None)[源代码]

Sends PreparedRequest object. Returns Response object.

参数:
  • request -- The PreparedRequest being 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.

身份验证

class requests.auth.AuthBase[源代码]

Base class that all auth implementations derive from

class requests.auth.HTTPBasicAuth(usernamepassword)[源代码]

Attaches HTTP Basic Authentication to the given Request object.

class requests.auth.HTTPProxyAuth(usernamepassword)[源代码]

Attaches HTTP Proxy Authentication to a given Request object.

class requests.auth.HTTPDigestAuth(usernamepassword)[源代码]

Attaches HTTP Digest Authentication to the given Request object.

编码

requests.utils.get_encodings_from_content(content)[源代码]

Returns encodings from given content string.

参数: content -- bytestring to extract encodings from.

requests.utils.get_encoding_from_headers(headers)[源代码]

Returns encodings from given HTTP Header Dict.

参数: headers -- dictionary to extract encoding from.

requests.utils.get_unicode_from_response(r)[源代码]

Returns the requested content back in unicode.

参数: r -- Response object to get unicode content from.

Tried:

  1. charset from content-type
  2. fall back and replace all unicode characters

Cookie

requests.utils.dict_from_cookiejar(cj)[源代码]

Returns a key/value dictionary from a CookieJar.

参数: cj -- CookieJar object to extract cookies from.

requests.utils.cookiejar_from_dict(cookie_dictcookiejar=Noneoverwrite=True)[源代码]

Returns a CookieJar from a key/value dictionary.

参数:
  • 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.

requests.utils.add_dict_to_cookiejar(cjcookie_dict)[源代码]

Returns a CookieJar from a key/value dictionary.

参数:
  • cj -- CookieJar to insert cookies into.
  • cookie_dict -- Dict of key/values to insert into CookieJar.

class requests.cookies.RequestsCookieJar(policy=None)[源代码]

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.LWPCookieJar and FileCookieJar.

Unlike a regular CookieJar, this class is pickleable.

警告

dictionary operations that are normally O(1) may be O(n).

add_cookie_header(request)

Add correct Cookie: header to request (urllib2.Request object).

The Cookie2 header is also added unless policy.hide_cookie2 is true.

clear(domain=Nonepath=Nonename=None)

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.

clear_expired_cookies()

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).

clear_session_cookies()

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.

copy()[源代码]

Return a copy of this RequestsCookieJar.

extract_cookies(responserequest)

Extract cookies from response, where allowable given the request.

get(namedefault=Nonedomain=Nonepath=None)[源代码]

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.

警告

operation is O(n), not O(1).

get_dict(domain=Nonepath=None)[源代码]

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.

items()[源代码]

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.

iteritems()[源代码]

Dict-like iteritems() that returns an iterator of name-value tuples from the jar. See iterkeys() and itervalues().

iterkeys()[源代码]

Dict-like iterkeys() that returns an iterator of names of cookies from the jar. See itervalues() and iteritems().

itervalues()[源代码]

Dict-like itervalues() that returns an iterator of values of cookies from the jar. See iterkeys() and iteritems().

keys()[源代码]

Dict-like keys() that returns a list of names of cookies from the jar. See values() and items().

list_domains()[源代码]

Utility method to list all the domains in the jar.

list_paths()[源代码]

Utility method to list all the paths in the jar.

make_cookies(responserequest)

Return sequence of Cookie objects extracted from response object.

multiple_domains()[源代码]

Returns True if there are multiple domains in the jar. Returns False otherwise.

pop(k[, d]) → v, remove specified key and return the corresponding value.

If key is not found, d is returned if given, otherwise KeyError is raised.

popitem() → (k, v), remove and return some (key, value) pair

as a 2-tuple; but raise KeyError if D is empty.

set(namevalue**kwargs)[源代码]

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_cookie_if_ok(cookierequest)

Set a cookie if policy says it's OK to do so.

setdefault(k[, d]) → D.get(k,d), also set D[k]=d if k not in D

update(other)[源代码]

Updates this jar with cookies from another CookieJar or dict-like

values()[源代码]

Dict-like values() that returns a list of values of cookies from the jar. See keys() and items().

class requests.cookies.CookieConflictError[源代码]

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.

状态码查询

requests.codes

>>> requests.codes['temporary_redirect']
307>>> requests.codes.teapot
418>>> requests.codes['\o/']
200

class requests.Request(method=Noneurl=Noneheaders=Nonefiles=Nonedata=Noneparams=Noneauth=Nonecookies=Nonehooks=Nonejson=None)[源代码]

A user-created Request object.

Used to prepare a PreparedRequest, which is sent to the server.

参数:
  • 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 files or 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(eventhook)

Deregister a previously registered hook. Returns True if the hook existed, False if not.

prepare()[源代码]

Constructs a PreparedRequest for transmission and returns it.

register_hook(eventhook)

Properly register a hook.

class requests.Response[源代码]

The Response object, 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 stream keyword 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 Response objects 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 permanent 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=1decode_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.

chunk_size must be of type int or None. A value of None will function differently depending on the value of stream. stream=True will read data as it arrives in whatever size the chunks are recieved. If stream=False, data is returned as a single chunk.

If decode_unicode is True, content will be decoded using the best available encoding based on the response.

iter_lines(chunk_size=512decode_unicode=Nonedelimiter=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.

注解

This method is not reentrant safe.

json(**kwargs)[源代码]

Returns the json-encoded content of a response, if any.

参数: **kwargs -- Optional arguments that json.loads takes.

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 raw requires that stream=True be set on the request.

reason = None

Textual reason of responded HTTP Status, e.g. "Not Found" or "OK".

request = None

The PreparedRequest object 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.encoding appropriately before accessing this property.

url = None

Final URL location of Response.

迁移到 1.x

本节详细介绍 0.x 和 1.x 的主要区别,减少升级带来的一些不便。

API 变化

  • Response.json 现在是可调用的并且不再是响应体的属性。

    import requests
    r = requests.get('https://github.com/timeline.json')
    r.json()   # 如果 JSON 解码失败,该调用会引发异常。
  • Session API 也发生了变化. Sessions 对象不再需要参数了。 Session 现在是大写的了,但为了向后兼容,它仍然能被小写的 session 实例化。

    s = requests.Session()    # 过去会话需要接收参数
    s.auth = auth
    s.headers.update(headers)
    r = s.get('http://httpbin.org/headers')
  • 除了'response',所有的请求挂钩已被移除。

  • 认证助手已经被分解成单独的模块了. 参见 requests-oauthlib and requests-kerberos.

  • 流请求的参数已从 prefetch 改变到 stream ,并且逻辑也被颠倒。除此之外, stream 现在对于原始响应读取也是必需的。

    # 在 0.x 中,传入 prefetch=False 会达到同样的结果
    r = requests.get('https://github.com/timeline.json', stream=True)
    for chunk in r.iter_content(8192):...
  • requests 方法的 config 参数已全部删除。 现在配置这些选项都在 Session ,比如 keep-alive 和最大数目的重定向。 详细程度选项应当由配置日志来处理。

    import requests
    import logging# 启用调试于 http.client 级别 (requests->urllib3->http.client)
    # 你将能看到 REQUEST,包括 HEADERS 和 DATA,以及包含 HEADERS 但不包含 DATA 的 RESPONSE。
    # 唯一缺少的是 response.body,它不会被 log 记录。
    try: # for Python 3from http.client import HTTPConnection
    except ImportError:from httplib import HTTPConnection
    HTTPConnection.debuglevel = 1logging.basicConfig() # 初始化 logging,否则不会看到任何 requests 的输出。
    logging.getLogger().setLevel(logging.DEBUG)
    requests_log = logging.getLogger("requests.packages.urllib3")
    requests_log.setLevel(logging.DEBUG)
    requests_log.propagate = Truerequests.get('http://httpbin.org/headers')

转载于:https://my.oschina.net/liuyuantao/blog/748757

Python requests模块相关接口相关推荐

  1. python requests cookiejar,Python requests模块cookie实例解析

    cookie并不陌生,与session一样,能够让http请求前后保持状态.与session不同之处,在于cookie数据仅保存于客户端.requests也提供了相应到方法去处理cookie. 在py ...

  2. 记录python requests模块及请求重试

    记录python requests模块及请求重试 1.打开charles,手机连接charles代理,然后手机登陆微信(ylgy)小游戏,通过第一关,获取https://cat-match.easyg ...

  3. Python—requests模块详解

    Python-requests模块详解 来源(博客园@小L小 ):Python-requests模块详解

  4. python requests下载图片_python读取图片大小Python Requests模块快速入门

    requests是python的一个HTTP客户端库,跟urllib,urllib2类似.它比 urllib 更加方便,可以节约我们大量的工作,它比 urllib 更加 Pythoner. 安装 Re ...

  5. python requests模块_Python 爬虫教程 requests 模块

    经过 前边文章<简单Python爬虫教程 (一)>.简单Python爬虫教程 (二)两篇文章的学习,能写一些比较简单的爬虫了,但是还不够,这一篇文章主要介绍Requests模块,reque ...

  6. requests模块相关用法

    requests模块 -1. 什么是requests模块- python原生的一个基于网络请求的模块,模拟浏览器发起请求. -2. 为什么使用requests模块-1. 自动处理url编码-2. 自动 ...

  7. django 使用requests请求相关接口

    1.如果是get请求接口,并且需要带相关参数的话,可以借鉴下面的代码: import requestsfrom django.http import JsonResponsedef get_info( ...

  8. 【接口自动化学习笔记】python+requests+excel实现接口自动化

    文章内容参考:pytest+requests+Excel+allure接口自动化测试框架实践_JJJims的博客-CSDN博客 功能        excel驱动的接口自动化+邮件发送 背景 参考了上 ...

  9. Python requests介绍之接口介绍

    Python requests介绍 引用官网介绍 Requests 唯一的一个非转基因的 Python HTTP 库,人类可以安全享用. Requests 允许你发送纯天然,植物饲养的 HTTP/1. ...

最新文章

  1. Java传输对象模式
  2. 得到java异常printStackTrace的详细信息
  3. android helloworld程序
  4. Android 解锁屏启动过程
  5. Android开发笔记之:Log图文详解(Log.v,Log.d,Log.i,Log.w,Log.e)
  6. USTC English Club Note20171020(3)
  7. OutLook最小化到托盘
  8. 吴思涵国内首场肿瘤ecDNA学术报告|深度揭秘半个世纪ecDNA的研究成果及突破性进展...
  9. 方法重载与重写,返回类型
  10. mac中sublime运行html,Mac系统下Sublime Text直接运行JavaScript调试控制台
  11. mysql与oracle存储过程_MySQL与Oracle差异比较之五存储过程Function
  12. 2022跨年代码(有烟花)
  13. 什么是私有ip 、A类地址、B类地址和C类地址?
  14. 光辉岁月-Beyond_习惯累积沉淀_新浪博客
  15. VS2019 添加一组控件到工具箱
  16. 计算机病毒可通过光盘传播吗,光盘能传播病毒吗
  17. C、C++数组初始化,数组赋值
  18. Java开源 Web开发框架
  19. 实时人体姿态估计!Efficient-HRNet:更快!更强!!
  20. 中国将自主建造宇宙空间站

热门文章

  1. 如何实现软件的国际化
  2. NODE Stream流总结(1)
  3. 使用定制的NSDictionary的方法,对NSArray进行排序(附:数组排序两种常见方法)
  4. SQL Server 2008 Analysis Services 多维数据库一步一步从入门到精通
  5. 从电影死亡笔记看商业智能在治安领域的应用
  6. Qt导入CMakeLists.txt后无法调试
  7. [转]Java + TestNG + Appium 实现单机多个Android终端并发测试
  8. Exchange-批量创建通讯组邮箱
  9. Java Jaxb JavaBean与XML互转
  10. QT:KeepAliveOption的应用