Current Path: > > lib > python2.7 > site-packages > pip > _vendor > requests
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__init__.py | File | 3575 bytes | April 21 2022 18:08:21. | |
__init__.pyc | File | 3856 bytes | April 21 2022 18:08:34. | |
__init__.pyo | File | 3687 bytes | April 21 2022 18:08:35. | |
__version__.py | File | 436 bytes | April 21 2022 18:08:21. | |
__version__.pyc | File | 587 bytes | April 21 2022 18:08:34. | |
__version__.pyo | File | 587 bytes | April 21 2022 18:08:34. | |
_internal_utils.py | File | 1096 bytes | April 21 2022 18:08:21. | |
_internal_utils.pyc | File | 1535 bytes | April 21 2022 18:08:34. | |
_internal_utils.pyo | File | 1483 bytes | April 21 2022 18:08:35. | |
adapters.py | File | 21016 bytes | April 21 2022 18:08:21. | |
adapters.pyc | File | 18979 bytes | April 21 2022 18:08:34. | |
adapters.pyo | File | 18979 bytes | April 21 2022 18:08:34. | |
api.py | File | 6237 bytes | April 21 2022 18:08:21. | |
api.pyc | File | 7060 bytes | April 21 2022 18:08:34. | |
api.pyo | File | 7060 bytes | April 21 2022 18:08:34. | |
auth.py | File | 9728 bytes | April 21 2022 18:08:21. | |
auth.pyc | File | 9924 bytes | April 21 2022 18:08:34. | |
auth.pyo | File | 9924 bytes | April 21 2022 18:08:34. | |
certs.py | File | 465 bytes | April 21 2022 18:08:21. | |
certs.pyc | File | 618 bytes | April 21 2022 18:08:34. | |
certs.pyo | File | 618 bytes | April 21 2022 18:08:34. | |
compat.py | File | 1626 bytes | April 21 2022 18:08:21. | |
compat.pyc | File | 1845 bytes | April 21 2022 18:08:34. | |
compat.pyo | File | 1845 bytes | April 21 2022 18:08:34. | |
cookies.py | File | 18208 bytes | April 21 2022 18:08:21. | |
cookies.pyc | File | 22404 bytes | April 21 2022 18:08:34. | |
cookies.pyo | File | 22404 bytes | April 21 2022 18:08:34. | |
exceptions.py | File | 3115 bytes | April 21 2022 18:08:21. | |
exceptions.pyc | File | 6918 bytes | April 21 2022 18:08:34. | |
exceptions.pyo | File | 6918 bytes | April 21 2022 18:08:34. | |
help.py | File | 3667 bytes | April 21 2022 18:08:21. | |
help.pyc | File | 3395 bytes | April 21 2022 18:08:34. | |
help.pyo | File | 3395 bytes | April 21 2022 18:08:34. | |
hooks.py | File | 767 bytes | April 21 2022 18:08:21. | |
hooks.pyc | File | 1235 bytes | April 21 2022 18:08:34. | |
hooks.pyo | File | 1235 bytes | April 21 2022 18:08:34. | |
models.py | File | 34051 bytes | April 21 2022 18:08:21. | |
models.pyc | File | 29208 bytes | April 21 2022 18:08:34. | |
models.pyo | File | 29208 bytes | April 21 2022 18:08:34. | |
packages.py | File | 695 bytes | April 21 2022 18:08:21. | |
packages.pyc | File | 578 bytes | April 21 2022 18:08:34. | |
packages.pyo | File | 578 bytes | April 21 2022 18:08:34. | |
sessions.py | File | 28689 bytes | April 21 2022 18:08:21. | |
sessions.pyc | File | 22372 bytes | April 21 2022 18:08:34. | |
sessions.pyo | File | 22372 bytes | April 21 2022 18:08:34. | |
status_codes.py | File | 3323 bytes | April 21 2022 18:08:21. | |
status_codes.pyc | File | 4633 bytes | April 21 2022 18:08:34. | |
status_codes.pyo | File | 4633 bytes | April 21 2022 18:08:34. | |
structures.py | File | 3012 bytes | April 21 2022 18:08:21. | |
structures.pyc | File | 5419 bytes | April 21 2022 18:08:34. | |
structures.pyo | File | 5419 bytes | April 21 2022 18:08:34. | |
utils.py | File | 27695 bytes | April 21 2022 18:08:21. | |
utils.pyc | File | 25638 bytes | April 21 2022 18:08:34. | |
utils.pyo | File | 25638 bytes | April 21 2022 18:08:34. |
# -*- coding: utf-8 -*- """ requests.api ~~~~~~~~~~~~ This module implements the Requests API. :copyright: (c) 2012 by Kenneth Reitz. :license: Apache2, see LICENSE for more details. """ from . import sessions def request(method, url, **kwargs): """Constructs and sends a :class:`Request <Request>`. :param method: method for the new :class:`Request` object. :param url: URL for the new :class:`Request` object. :param params: (optional) Dictionary or bytes to be sent in the query string for the :class:`Request`. :param data: (optional) Dictionary or list of tuples ``[(key, value)]`` (will be form-encoded), bytes, or file-like object to send in the body of the :class:`Request`. :param json: (optional) json data 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', 'http://httpbin.org/get') <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) def get(url, params=None, **kwargs): r"""Sends a GET request. :param url: URL for the new :class:`Request` object. :param params: (optional) Dictionary or bytes to be sent in the query string for the :class:`Request`. :param \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response """ kwargs.setdefault('allow_redirects', True) return request('get', url, params=params, **kwargs) def options(url, **kwargs): r"""Sends an OPTIONS request. :param url: URL for the new :class:`Request` object. :param \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response """ kwargs.setdefault('allow_redirects', True) return request('options', url, **kwargs) def head(url, **kwargs): r"""Sends a HEAD request. :param url: URL for the new :class:`Request` object. :param \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response """ kwargs.setdefault('allow_redirects', False) return request('head', url, **kwargs) def post(url, data=None, json=None, **kwargs): r"""Sends a POST request. :param url: URL for the new :class:`Request` object. :param data: (optional) Dictionary (will be form-encoded), bytes, or file-like object to send in the body of the :class:`Request`. :param json: (optional) json data to send in the body of the :class:`Request`. :param \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response """ return request('post', url, data=data, json=json, **kwargs) def put(url, data=None, **kwargs): r"""Sends a PUT request. :param url: URL for the new :class:`Request` object. :param data: (optional) Dictionary (will be form-encoded), bytes, or file-like object to send in the body of the :class:`Request`. :param json: (optional) json data to send in the body of the :class:`Request`. :param \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response """ return request('put', url, data=data, **kwargs) def patch(url, data=None, **kwargs): r"""Sends a PATCH request. :param url: URL for the new :class:`Request` object. :param data: (optional) Dictionary (will be form-encoded), bytes, or file-like object to send in the body of the :class:`Request`. :param json: (optional) json data to send in the body of the :class:`Request`. :param \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response """ return request('patch', url, data=data, **kwargs) def delete(url, **kwargs): r"""Sends a DELETE request. :param url: URL for the new :class:`Request` object. :param \*\*kwargs: Optional arguments that ``request`` takes. :return: :class:`Response <Response>` object :rtype: requests.Response """ return request('delete', url, **kwargs)
SILENT KILLER Tool