3 υ_ @sdZddlmZddlmZddlZddlmZddZyeejejWn0e e fk rzej d j ejejeYnXdd l mZejd edd lmZmZmZmZdd lmZmZmZmZddlmZmZddlmZddlmZddlmZmZmZddl m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&m'Z'm(Z(ddl)m*Z*m+Z+ddl,m-Z-ddlm.Z.m/Z/m0Z0m1Z1m2Z2m3Z3m4Z4m5Z5m6Z6ddl7Z7yddl7m8Z8Wn(e9k rGddde7j:Z8YnXe7j;e<j=e8ejde4dddS)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 . :copyright: (c) 2017 by Kenneth Reitz. :license: Apache 2.0, see LICENSE for more details. )urllib3)chardetN)RequestsDependencyWarningcCs~|jd}t|dkr |jd|\}}}t|t|t|}}}|jddd\}}}t|t|t|}}}dS)N.0)splitlenappendint)Zurllib3_versionZchardet_versionmajorminorpatchr/usr/lib/python3.6/__init__.pycheck_compatibility1s    rzAurllib3 ({0}) or chardet ({1}) doesn't match a supported version!)DependencyWarningignore) __title____description____url__ __version__) __build__ __author____author_email__ __license__) __copyright____cake__)utils)packages)RequestResponsePreparedRequest)requestgetheadpostrputdeleteoptions)sessionSession)codes) RequestExceptionTimeout URLRequiredTooManyRedirects HTTPErrorConnectionErrorFileModeWarningConnectTimeout ReadTimeout) NullHandlerc@seZdZddZdS)r8cCsdS)Nr)selfrecordrrremitsszNullHandler.emitN)__name__ __module__ __qualname__r;rrrrr8rsr8defaultT)r )>__doc__Z pip._vendorrrwarnings exceptionsrrrAssertionError ValueErrorwarnformatZpip._vendor.urllib3.exceptionsr simplefilterrrrrrrrrrr r!Zmodelsr"r#r$Zapir%r&r'r(rr)r*r+Zsessionsr,r-Z status_codesr.r/r0r1r2r3r4r5r6r7Zloggingr8 ImportErrorZHandlerZ getLoggerr<Z addHandlerrrrr)s<        ( ,