????

Your IP : 216.73.216.152


Current Path : /lib/python2.7/site-packages/pip/_vendor/requests/
Upload File :
Current File : //lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc

�
}�\]c@s�dZddlmZddlmZddlZddlmZd�Zd�Zyeej	ej	�Wn9e
efk
r�ejd	j
ej	ej	�e�nXdd
lmZesy8ddlmZej�ddlm	Zee�Wqek
rqXndd
lmZejde�ddl	mZmZmZm	Z	ddl	mZmZmZmZddl	m Z m!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/m0Z0m1Z1ddl2m3Z3m4Z4ddl5m6Z6ddlm7Z7m8Z8m9Z9m:Z:m;Z;m<Z<m=Z=m>Z>m?Z?ddl@Z@ddl@mAZAe@jBeC�jDeA��ejde=deE�dS(s�
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('https://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.
i����(turllib3(tchardetNi(tRequestsDependencyWarningcCs-|jd�}|dgks$t�t|�dkrF|jd�n|\}}}t|�t|�t|�}}}|dks�t�|dks�t�|dks�t�|jd�d \}}}t|�t|�t|�}}}|dkst�|dkst�|dks)t�dS(	Nt.tdevit0iiii(tsplittAssertionErrortlentappendtint(turllib3_versiontchardet_versiontmajortminortpatch((s</tmp/pip-install-ewDPok/pip/pip/_vendor/requests/__init__.pytcheck_compatibility1s&&cCsry"ttt|jd���}Wntk
r6dSX|dddgkrndj|�}tj|t�ndS(NRiiis4Old version of cryptography ({}) may cause slowdown.(	tlisttmapR
Rt
ValueErrortformattwarningstwarnR(tcryptography_versiontwarning((s</tmp/pip-install-ewDPok/pip/pip/_vendor/requests/__init__.pyt_check_cryptographyJs"
s?urllib3 ({}) or chardet ({}) doesn't match a supported version!(tWINDOWS(t	pyopenssl(t__version__(tDependencyWarningtignore(t	__title__t__description__t__url__R(t	__build__t
__author__t__author_email__t__license__(t
__copyright__t__cake__(tutils(tpackages(tRequesttResponsetPreparedRequest(trequesttgettheadtpostRtputtdeletetoptions(tsessiontSession(tcodes(	tRequestExceptiontTimeouttURLRequiredtTooManyRedirectst	HTTPErrortConnectionErrortFileModeWarningtConnectTimeouttReadTimeout(tNullHandlertdefaultR	(Ft__doc__tpip._vendorRRRt
exceptionsRRRRRRRRtpip._internal.utils.compatRtpip._vendor.urllib3.contribRtinject_into_urllib3tcryptographyRtImportErrortpip._vendor.urllib3.exceptionsRtsimplefilterRR R!R"R#R$R%R&R'tR(R)tmodelsR*R+R,tapiR-R.R/R0RR1R2R3tsessionsR4R5tstatus_codesR6R7R8R9R:R;R<R=R>R?tloggingR@t	getLoggert__name__t
addHandlertTrue(((s</tmp/pip-install-ewDPok/pip/pip/_vendor/requests/__init__.pyt<module>)sJ		

"":@