# -*- coding: utf-8 -*-
# __ # /__) _ _ _ _ _/ _ # / ( (- (/ (/ (- _) / _) # /
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 >>> b'Python is a programming language' in r.content True
... or POST:
>>> payload = dict(key1='value1', key2='value2') >>> r = requests.post('https://httpbin.org/post', data=payload) >>> print(r.text) { ... "form": { "key1": "value1", "key2": "value2" }, ... }
The other HTTP methods are supported - see `requests.api`. Full documentation is at <https://requests.readthedocs.io>.
:copyright: (c) 2017 by Kenneth Reitz. :license: Apache 2.0, see LICENSE for more details. """
# Sometimes, urllib3 only reports its version as 16.1. urllib3_version.append('0')
# Check urllib3 for compatibility. # urllib3 >= 1.21.1, <= 1.25
# Check chardet for compatibility. # chardet >= 3.0.2, < 3.1.0
# cryptography < 1.3.4 try: cryptography_version = list(map(int, cryptography_version.split('.'))) except ValueError: return
if cryptography_version < [1, 3, 4]: warning = 'Old version of cryptography ({}) may cause slowdown.'.format(cryptography_version) warnings.warn(warning, RequestsDependencyWarning)
# Check imported dependencies for compatibility. except (AssertionError, ValueError): warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported " "version!".format(urllib3.__version__, chardet.__version__), RequestsDependencyWarning)
# Attempt to enable urllib3's fallback for SNI support # if the standard library doesn't support SNI or the # 'ssl' library isn't available. except ImportError: ssl = None
from urllib3.contrib import pyopenssl pyopenssl.inject_into_urllib3()
# Check cryptography version from cryptography import __version__ as cryptography_version _check_cryptography(cryptography_version) except ImportError: pass
# urllib3's DependencyWarnings should be silenced.
RequestException, Timeout, URLRequired, TooManyRedirects, HTTPError, ConnectionError, FileModeWarning, ConnectTimeout, ReadTimeout )
# Set default logging handler to avoid "No handler found" warnings.
# FileModeWarnings go off per the default. |