Viewing File: /usr/lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-36.pyc

3

�Pf�
�@s�dZddlmZddlmZddlZddlmZdd�Zyeejej�Wn0e	e
fk
rzejd	jejej�e�YnXdd
l
mZejde�ddlmZmZmZmZdd
lmZmZmZmZddlmZmZddlmZddlmZddlmZmZmZddl m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&m'Z'm(Z(ddl)m*Z*m+Z+ddl,m-Z-ddlm.Z.m/Z/m0Z0m1Z1m2Z2m3Z3m4Z4m5Z5m6Z6ddl7Z7yddl7m8Z8Wn(e9k
�r�Gdd�de7j:�Z8YnXe7j;e<�j=e8��ejde4dd�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
   >>> 'Python is a programming language' in r.content
   True

... or POST:

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

The other HTTP methods are supported - see `requests.api`. Full documentation
is at <http://python-requests.org>.

:copyright: (c) 2017 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.
�)�urllib3)�chardetN�)�RequestsDependencyWarningcCs�|jd�}|dgkst�t|�dkr.|jd�|\}}}t|�t|�t|�}}}|dks`t�|dkslt�|dksxt�|jd�dd�\}}}t|�t|�t|�}}}|dks�t�|dks�t�|dks�t�dS)	N�.Zdev��0r���)�split�AssertionError�len�append�int)Zurllib3_versionZchardet_version�major�minor�patch�r�/usr/lib/python3.6/__init__.py�check_compatibility1s


rzAurllib3 ({0}) or chardet ({1}) doesn't match a supported version!)�DependencyWarning�ignore)�	__title__�__description__�__url__�__version__)�	__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)�NullHandlerc@seZdZdd�ZdS)r;cCsdS)Nr)�self�recordrrr�emitsszNullHandler.emitN)�__name__�
__module__�__qualname__r>rrrrr;rsr;�defaultT)r)>�__doc__Zpip._vendorrr�warnings�
exceptionsrrrr
�
ValueError�warn�formatZpip._vendor.urllib3.exceptionsr�simplefilterrrrrrrr r!r"�r#r$Zmodelsr%r&r'Zapir(r)r*r+rr,r-r.Zsessionsr/r0Zstatus_codesr1r2r3r4r5r6r7r8r9r:Zloggingr;�ImportErrorZHandlerZ	getLoggerr?Z
addHandlerrrrr�<module>)s<

(,
Back to Directory File Manager
<