ó
^†êWc           @   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[ n 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 d e- j/ f d „  ƒ  YZ. n Xe- j0 e1 ƒ j2 e. ƒ  ƒ d	 d
 l Z e j d e* d e3 ƒd
 S(   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('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.

t   requestss   2.10.0i  s   Kenneth Reitzs
   Apache 2.0s   Copyright 2016 Kenneth Reitzi   (   t	   pyopenssliÿÿÿÿN(   t   DependencyWarningt   ignore(   t   utils(   t   Requestt   Responset   PreparedRequest(   t   requestt   gett   headt   postt   patcht   putt   deletet   options(   t   sessiont   Session(   t   codes(	   t   RequestExceptiont   Timeoutt   URLRequiredt   TooManyRedirectst	   HTTPErrort   ConnectionErrort   FileModeWarningt   ConnectTimeoutt   ReadTimeout(   t   NullHandlerR   c           B   s   e  Z d  „  Z RS(   c         C   s   d  S(   N(    (   t   selft   record(    (    sn   /private/var/folders/3n/6h2rwf155rn1m71wwyxn79n80000gn/T/pip-build-IcAT_k/pip/pip/_vendor/requests/__init__.pyt   emitQ   s    (   t   __name__t
   __module__R   (    (    (    sn   /private/var/folders/3n/6h2rwf155rn1m71wwyxn79n80000gn/T/pip-build-IcAT_k/pip/pip/_vendor/requests/__init__.pyR   P   s   t   defaultt   append(4   t   __doc__t	   __title__t   __version__t	   __build__t
   __author__t   __license__t   __copyright__t   packages.urllib3.contribR   t   inject_into_urllib3t   ImportErrort   warningst   packages.urllib3.exceptionsR   t   simplefiltert    R   t   modelsR   R   R   t   apiR   R	   R
   R   R   R   R   R   t   sessionsR   R   t   status_codesR   t
   exceptionsR   R   R   R   R   R   R   R   R   t   loggingR   t   Handlert	   getLoggerR    t
   addHandlert   True(    (    (    sn   /private/var/folders/3n/6h2rwf155rn1m71wwyxn79n80000gn/T/pip-build-IcAT_k/pip/pip/_vendor/requests/__init__.pyt   <module>*   s8   :@