î
)Ú X•  ã               @   sÖ  d  Z  d Z d Z d Z d Z d Z d Z y d d l m Z e j	 ƒ  Wn e
 k
 r\ Yn Xd	 d
 l Z d d l m Z e j d e ƒ d d l m Z d d l m Z m Z m Z d d l m Z m Z m Z m Z m Z m Z m Z m Z d d l m Z m  Z  d d l! m" Z" d d l# m$ Z$ m% Z% m& Z& m' Z' m( Z( m) Z) m* Z* m+ Z+ m, Z, d	 d
 l- Z- y d	 d l- m. Z. Wn+ e
 k
 r¢Gd d „  d e- j/ ƒ Z. Yn Xe- j0 e1 ƒ j2 e. ƒ  ƒ e j d e* d d ƒd
 S)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) 2016 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.
Úrequestsz2.11.1i zKenneth Reitzz
Apache 2.0zCopyright 2016 Kenneth Reitzé   )Ú	pyopensslé    N)ÚDependencyWarningÚignore)Úutils)ÚRequestÚResponseÚPreparedRequest)ÚrequestÚgetÚheadÚpostÚpatchÚputÚdeleteÚoptions)ÚsessionÚSession)Úcodes)	ÚRequestExceptionÚTimeoutÚURLRequiredÚTooManyRedirectsÚ	HTTPErrorÚConnectionErrorÚFileModeWarningÚConnectTimeoutÚReadTimeout)ÚNullHandlerc               @   s   e  Z d  Z d d „  Z d S)r   c             C   s   d  S)N© )ÚselfÚrecordr    r    úA/home/ubuntu/projects/ifolica/build/requests/requests/__init__.pyÚemitP   s    zNullHandler.emitN)Ú__name__Ú
__module__Ú__qualname__r$   r    r    r    r#   r   O   s   r   ÚdefaultÚappendT)3Ú__doc__Ú	__title__Ú__version__Ú	__build__Ú
__author__Ú__license__Ú__copyright__Zpackages.urllib3.contribr   Zinject_into_urllib3ÚImportErrorÚwarningsZpackages.urllib3.exceptionsr   ÚsimplefilterÚ r   Úmodelsr   r	   r
   Úapir   r   r   r   r   r   r   r   Úsessionsr   r   Ústatus_codesr   Ú
exceptionsr   r   r   r   r   r   r   r   r   Úloggingr   ÚHandlerÚ	getLoggerr%   Ú
addHandlerr    r    r    r#   Ú<module>)   s6   :@