£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>

Re@                 @   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 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% d d l& Z& y d d l& m' Z' Wn+ e
 k
 rdGd d   d e& j(  Z' Yn Xe& j) e*  j+ e'    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('http://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) 2014 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.

requestsz2.3.0i  zKenneth Reitzz
Apache 2.0zCopyright 2014 Kenneth Reitz   )	pyopenssl)utils)RequestResponsePreparedRequest)requestgetheadpostpatchputdeleteoptions)sessionSession)codes)RequestExceptionTimeoutURLRequiredTooManyRedirects	HTTPErrorConnectionError    N)NullHandlerc               @   s   e  Z d  Z d d   Z d S)r   c             C   s   d  S)N )selfrecordr   r   8/tmp/pip-ztkk0jow-build/pip/_vendor/requests/__init__.pyemitJ   s    zNullHandler.emitN)__name__
__module____qualname__r   r   r   r   r   r   I   s   r   ),__doc__	__title____version__	__build__
__author____license____copyright__Zpackages.urllib3.contribr   Zinject_into_urllib3ImportError r   modelsr   r   r   apir   r	   r
   r   r   r   r   r   sessionsr   r   status_codesr   
exceptionsr   r   r   r   r   r   loggingr   Handler	getLoggerr    
addHandlerr   r   r   r   <module>*   s.   :.