request() — requests Function Reference
Architecture documentation for the request() function in api.py from the requests codebase.
Entity Profile
Dependency Diagram
graph TD 8f0a1008_20a1_45d8_2ae7_96c1a7562216["request()"] b9426d6e_b47d_565b_5251_7d3a1c1dfbd1["api.py"] 8f0a1008_20a1_45d8_2ae7_96c1a7562216 -->|defined in| b9426d6e_b47d_565b_5251_7d3a1c1dfbd1 a3b95b47_fda9_fc6d_5e09_ffcc2d55d3de["get()"] a3b95b47_fda9_fc6d_5e09_ffcc2d55d3de -->|calls| 8f0a1008_20a1_45d8_2ae7_96c1a7562216 86a774a1_032d_bb2a_00f2_f876c5f4a3bd["options()"] 86a774a1_032d_bb2a_00f2_f876c5f4a3bd -->|calls| 8f0a1008_20a1_45d8_2ae7_96c1a7562216 04dba529_ffe4_961c_ee46_0ed4acf6ab64["head()"] 04dba529_ffe4_961c_ee46_0ed4acf6ab64 -->|calls| 8f0a1008_20a1_45d8_2ae7_96c1a7562216 29f1906d_9174_948c_0188_772a5120ef97["post()"] 29f1906d_9174_948c_0188_772a5120ef97 -->|calls| 8f0a1008_20a1_45d8_2ae7_96c1a7562216 2efb9192_fef0_df46_5ab7_7c2658857f5d["put()"] 2efb9192_fef0_df46_5ab7_7c2658857f5d -->|calls| 8f0a1008_20a1_45d8_2ae7_96c1a7562216 9a230dec_b932_c46a_f6f6_56fca478654c["patch()"] 9a230dec_b932_c46a_f6f6_56fca478654c -->|calls| 8f0a1008_20a1_45d8_2ae7_96c1a7562216 9d5006ee_e4e9_b2ea_8553_379790eaea51["delete()"] 9d5006ee_e4e9_b2ea_8553_379790eaea51 -->|calls| 8f0a1008_20a1_45d8_2ae7_96c1a7562216 style 8f0a1008_20a1_45d8_2ae7_96c1a7562216 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
src/requests/api.py lines 14–59
def request(method, url, **kwargs):
"""Constructs and sends a :class:`Request <Request>`.
:param method: method for the new :class:`Request` object: ``GET``, ``OPTIONS``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, or ``DELETE``.
:param url: URL for the new :class:`Request` object.
:param params: (optional) Dictionary, list of tuples or bytes to send
in the query string for the :class:`Request`.
:param data: (optional) Dictionary, list of tuples, bytes, or file-like
object to send in the body of the :class:`Request`.
:param json: (optional) A JSON serializable Python object to send in the body of the :class:`Request`.
:param headers: (optional) Dictionary of HTTP Headers to send with the :class:`Request`.
:param cookies: (optional) Dict or CookieJar object to send with the :class:`Request`.
:param 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.
:param auth: (optional) Auth tuple to enable Basic/Digest/Custom HTTP Auth.
:param timeout: (optional) How many seconds to wait for the server to send data
before giving up, as a float, or a :ref:`(connect timeout, read
timeout) <timeouts>` tuple.
:type timeout: float or tuple
:param allow_redirects: (optional) Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to ``True``.
:type allow_redirects: bool
:param proxies: (optional) Dictionary mapping protocol to the URL of the proxy.
:param verify: (optional) Either a boolean, in which case it controls whether we verify
the server's TLS certificate, or a string, in which case it must be a path
to a CA bundle to use. Defaults to ``True``.
:param stream: (optional) if ``False``, the response content will be immediately downloaded.
:param cert: (optional) if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair.
:return: :class:`Response <Response>` object
:rtype: requests.Response
Usage::
>>> import requests
>>> req = requests.request('GET', 'https://httpbin.org/get')
>>> req
<Response [200]>
"""
# By using the 'with' statement we are sure the session is closed, thus we
# avoid leaving sockets open which can trigger a ResourceWarning in some
# cases, and look like a memory leak in others.
with sessions.Session() as session:
return session.request(method=method, url=url, **kwargs)
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does request() do?
request() is a function in the requests codebase, defined in src/requests/api.py.
Where is request() defined?
request() is defined in src/requests/api.py at line 14.
What calls request()?
request() is called by 7 function(s): delete, get, head, options, patch, post, put.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free