📂 Advanced File Manager
Multi-Root Navigation System
⚡ Quick Jump
Server (/)
Home (/home)
Var_www (/var/www)
Current (/home4/shelley/public_html/shelleycutler.com/wp-content/mu-plugins)
📍 Go
⬆ Ke Atas
🏠 Root Server
🏠 Root App
🔄 Refresh
📀 /
›
usr
›
lib
›
python3.9
›
site-packages
›
pip
›
_vendor
›
requests
›
📁 __pycache__
📍
Lokasi:
/usr/lib/python3.9/site-packages/pip/_vendor/requests/__pycache__
💾
Free:
45.8 GB
⚠️ Direktori ini
tidak writable
.
✏️ Mengedit: __init__.cpython-39.opt-1.pyc
a �lj� � @ 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�} t| �dkr | �d� | \}}}t|�t|�t|� }}}|r�|� d�d d� \}}}t|�t|�t|� }}}nB|r�|� d�d d� \}}}t|�t|�t|� }}}ntd��d S )N�.� �0� 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 Zpip._vendor.urllib3.exceptionsr"