ó `8(Zc@s¢dZdZdZdZdZdZdZddlZd d lm Z ej d e ƒd d l m Z d d l mZmZmZd dlmZmZmZmZmZmZmZmZd dlmZmZd dlmZd dlm Z m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&m'Z'm(Z(ddl)Z)yddl)m*Z*Wn*e+k rnde)j,fd„ƒYZ*nXe)j-e.ƒj/e*ƒƒej de&de0ƒdS(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 . :copyright: (c) 2016 by Kenneth Reitz. :license: Apache 2.0, see LICENSE for more details. trequestss2.11.1is Kenneth Reitzs Apache 2.0sCopyright 2016 Kenneth ReitziÿÿÿÿNi(tDependencyWarningtignore(tutils(tRequesttResponsetPreparedRequest(trequesttgettheadtposttpatchtputtdeletetoptions(tsessiontSession(tcodes( tRequestExceptiontTimeoutt URLRequiredtTooManyRedirectst HTTPErrortConnectionErrortFileModeWarningtConnectTimeoutt ReadTimeout(t NullHandlerRcBseZd„ZRS(cCsdS(N((tselftrecord((s:/tmp/pip-build-0nEYGB/pip/pip/_vendor/requests/__init__.pytemitRs(t__name__t __module__R(((s:/tmp/pip-build-0nEYGB/pip/pip/_vendor/requests/__init__.pyRQstdefaulttappend(1t__doc__t __title__t __version__t __build__t __author__t __license__t __copyright__twarningstpackages.urllib3.exceptionsRt simplefiltertRtmodelsRRRtapiRRR R R R R RtsessionsRRt status_codesRt exceptionsRRRRRRRRRtloggingRt ImportErrortHandlert getLoggerRt addHandlertTrue(((s:/tmp/pip-build-0nEYGB/pip/pip/_vendor/requests/__init__.pyt)s, :@