HEX
Server: Apache
System: Linux a16-asgard6.hospedagemuolhost.com.br 5.14.0-570.52.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 15 06:39:08 EDT 2025 x86_64
User: maoristu4c3dbd03 (1436)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //lib/python3.9/site-packages/requests/__pycache__/__init__.cpython-39.pyc
a

�/�h-�	@sdZddlZddlZddlZddlmZdd�Zdd�Zzeejej�Wn.e	e
fyxe�d	�ejej�e�Yn0z\zddl
Z
Wney�dZ
Yn0ee
d
d�s�ddlmZe��dd
lmZee�Wney�Yn0ddlmZe�de�ddlmZmZmZmZddlmZmZmZmZddlmZm Z ddl!m"Z"ddl!m#Z#ddl$m%Z%m&Z&m'Z'ddl(m)Z)m*Z*m+Z+m,Z,m-Z-m.Z.m/Z/m0Z0ddl1m2Z2m3Z3ddl4m5Z5ddlm6Z6m7Z7m8Z8m9Z9m:Z:m;Z;m<Z<m=Z=m>Z>ddl?Z?ddl?m@Z@e?�AeB��Ce@��ejde<dd�dS)a�
Requests HTTP Library
~~~~~~~~~~~~~~~~~~~~~

Requests is an HTTP library, written in Python, for human beings.
Basic GET usage:

   >>> import requests
   >>> r = requests.get('https://www.python.org')
   >>> r.status_code
   200
   >>> b'Python is a programming language' in r.content
   True

... or POST:

   >>> payload = dict(key1='value1', key2='value2')
   >>> r = requests.post('https://httpbin.org/post', data=payload)
   >>> print(r.text)
   {
     ...
     "form": {
       "key1": "value1",
       "key2": "value2"
     },
     ...
   }

The other HTTP methods are supported - see `requests.api`. Full documentation
is at <https://requests.readthedocs.io>.

:copyright: (c) 2017 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.
�N�)�RequestsDependencyWarningcCs�|�d�}|dgksJ�t|�dkr.|�d�|\}}}t|�t|�t|�}}}|dks`J�|dkslJ�|dksxJ�|�d�dd�\}}}t|�t|�t|�}}}d	|||fkr�d
ks�nJ�dS)N�.�dev��0r���)r
rr)�rr)�split�len�append�int)Zurllib3_versionZchardet_version�major�minor�patch�r�5/usr/lib/python3.9/site-packages/requests/__init__.py�check_compatibility1s


rcCsTzttt|�d���}Wnty,YdS0|gd�krPd�|�}t�|t�dS)Nr)rr
�z4Old version of cryptography ({}) may cause slowdown.)	�list�maprr�
ValueError�format�warnings�warnr)�cryptography_versionZwarningrrr�_check_cryptographyHs
rz?urllib3 ({}) or chardet ({}) doesn't match a supported version!ZHAS_SNIF)�	pyopenssl)�__version__)�DependencyWarning�ignore)�	__title__�__description__�__url__r )�	__build__�
__author__�__author_email__�__license__)�
__copyright__�__cake__)�utils)�packages)�Request�Response�PreparedRequest)�request�get�head�postr�put�delete�options)�session�Session)�codes)	�RequestException�Timeout�URLRequired�TooManyRedirects�	HTTPError�ConnectionError�FileModeWarning�ConnectTimeout�ReadTimeout)�NullHandler�defaultT)r)D�__doc__Zurllib3Zchardetr�
exceptionsrrrr �AssertionErrorrrrZssl�ImportError�getattrZurllib3.contribrZinject_into_urllib3ZcryptographyrZurllib3.exceptionsr!�simplefilterr#r$r%r&r'r(r)r*r+�r,r-Zmodelsr.r/r0Zapir1r2r3r4rr5r6r7Zsessionsr8r9Zstatus_codesr:r;r<r=r>r?r@rArBrCZloggingrDZ	getLogger�__name__Z
addHandlerrrrr�<module>sT#��

(,