
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
3
Pf                 @   s  d Z ddlmZ ddlmZ ddlZddlmZ dd Zyeejej W n0 e	e
fk
rz   ejd	jejeje Y nX dd
lmZ ejde ddlmZmZmZmZ ddl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 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/m0Z0m1Z1m2Z2m3Z3m4Z4m5Z5m6Z6 ddl7Z7yddl7m8Z8 W n( e9k
r   G dd de7j:Z8Y nX e7j;e<j=e8  ejde4d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) 2017 by Kenneth Reitz.
:license: Apache 2.0, see LICENSE for more details.
    )urllib3)chardetN   )RequestsDependencyWarningc             C   s~   | j d} t| dkr | jd | \}}}t|t|t|  }}}|j dd d \}}}t|t|t|  }}}d S )N.   0   )splitlenappendint)Zurllib3_versionZchardet_versionmajorminorpatch r   /usr/lib/python3.6/__init__.pycheck_compatibility1   s    


r   zAurllib3 ({0}) or chardet ({1}) doesn't match a supported version!)DependencyWarningignore)	__title____description____url____version__)	__build__
__author____author_email____license__)__copyright____cake__)utils)packages)RequestResponsePreparedRequest)requestgetheadpostr   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 )r8   c             C   s   d S )Nr   )selfrecordr   r   r   emits   s    zNullHandler.emitN)__name__
__module____qualname__r;   r   r   r   r   r8   r   s   r8   defaultT)r   )>__doc__Zpip._vendorr   r   warnings
exceptionsr   r   r   AssertionError
ValueErrorwarnformatZpip._vendor.urllib3.exceptionsr   simplefilterr   r   r   r   r   r   r   r   r    r    r!   Zmodelsr"   r#   r$   Zapir%   r&   r'   r(   r   r)   r*   r+   Zsessionsr,   r-   Zstatus_codesr.   r/   r0   r1   r2   r3   r4   r5   r6   r7   Zloggingr8   ImportErrorZHandlerZ	getLoggerr<   Z
addHandlerr   r   r   r   <module>)   s<   

(,