Mini Kabibi Habibi

Current Path : C:/Users/ITO/AppData/Local/Programs/GIMP 2/lib/python2.7/site-packages/requests/
Upload File :
Current File : C:/Users/ITO/AppData/Local/Programs/GIMP 2/lib/python2.7/site-packages/requests/__init__.pyo

�
���]c@s�dZddlZddlZddlZddlmZd�Zd�Zyeejej�Wn9e	e
fk
r�ejdjejej�e�nXy8ddl
mZej�dd	lmZee�Wnek
r�nXdd
lmZejde�ddlmZmZmZmZdd
lmZmZmZmZddlmZmZddlm Z ddlm!Z!ddl"m#Z#m$Z$m%Z%ddl&m'Z'm(Z(m)Z)m*Z*m+Z+m,Z,m-Z-m.Z.ddl/m0Z0m1Z1ddl2m3Z3ddlm4Z4m5Z5m6Z6m7Z7m8Z8m9Z9m:Z:m;Z;m<Z<ddl=Z=ddl=m>Z>e=j?e@�jAe>��ejde:deB�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����Ni(tRequestsDependencyWarningcCs�|jd�}t|�dkr1|jd�n|\}}}t|�t|�t|�}}}|jd�d \}}}t|�t|�t|�}}}dS(Nt.it0i(tsplittlentappendtint(turllib3_versiontchardet_versiontmajortminortpatch((s9/mingw64/lib/python2.7/site-packages/requests/__init__.pytcheck_compatibility1s&&cCsry"ttt|jd���}Wntk
r6dSX|dddgkrndj|�}tj|t�ndS(NRiiis4Old version of cryptography ({}) may cause slowdown.(	tlisttmapRRt
ValueErrortformattwarningstwarnR(tcryptography_versiontwarning((s9/mingw64/lib/python2.7/site-packages/requests/__init__.pyt_check_cryptographyJs"
s?urllib3 ({}) or chardet ({}) doesn't match a supported version!(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(Ct__doc__turllib3tchardetRt
exceptionsRRRRtAssertionErrorRRRturllib3.contribRtinject_into_urllib3tcryptographyRtImportErrorturllib3.exceptionsRtsimplefilterRRRRRRR R!R"tR#R$tmodelsR%R&R'tapiR(R)R*R+RR,R-R.tsessionsR/R0tstatus_codesR1R2R3R4R5R6R7R8R9R:tloggingR;t	getLoggert__name__t
addHandlertTrue(((s9/mingw64/lib/python2.7/site-packages/requests/__init__.pyt<module>)sF		

"":@