a Y@s^dZdZdZdZdZdZdZzddlmZe Wne yFYn0d d l Z dd l m Z e d e dd lmZddlmZmZmZddlmZmZmZmZmZmZmZmZddlmZm Z ddl!m"Z"ddl#m$Z$m%Z%m&Z&m'Z'm(Z(m)Z)m*Z*m+Z+m,Z,d d l-Z-zd dl-m.Z.Wn&e y6Gddde-j/Z.Yn0e-0e12e.e jde*ddd 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 . :copyright: (c) 2016 by Kenneth Reitz. :license: Apache 2.0, see LICENSE for more details. requestsz2.14.1iz Kenneth Reitzz Apache 2.0zCopyright 2016 Kenneth Reitz) pyopensslN)DependencyWarningignore)utils)RequestResponsePreparedRequest)requestgetheadpostpatchputdeleteoptions)sessionSession)codes) RequestExceptionTimeout URLRequiredTooManyRedirects HTTPErrorConnectionErrorFileModeWarningConnectTimeout ReadTimeout) NullHandlerc@seZdZddZdS)rcCsdS)N)selfrecordr r 8/Users/ymaher/Downloads/lambdas_org/requests/__init__.pyemitPszNullHandler.emitN)__name__ __module__ __qualname__r$r r r r#rOsrdefaultT)append)3__doc__Z __title__ __version__Z __build__ __author__ __license__ __copyright__Zpackages.urllib3.contribrZinject_into_urllib3 ImportErrorwarningsZpackages.urllib3.exceptionsr simplefilterrmodelsrr r Zapir r r rrrrrZsessionsrrZ status_codesr exceptionsrrrrrrrrrloggingrHandler getLoggerr% addHandlerr r r r#s6#      ( ,