mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 23:10:16 +00:00
27 lines
515 B
Python
27 lines
515 B
Python
"""
|
|
urllib3 - Thread-safe connection pooling and re-using.
|
|
"""
|
|
|
|
__author__ = "Andrey Petrov (andrey.petrov@shazow.net)"
|
|
__license__ = "MIT"
|
|
__version__ = "$Rev$"
|
|
|
|
|
|
from .connectionpool import (
|
|
HTTPConnectionPool,
|
|
HTTPSConnectionPool,
|
|
connection_from_url,
|
|
get_host,
|
|
make_headers)
|
|
|
|
|
|
from .exceptions import (
|
|
HTTPError,
|
|
MaxRetryError,
|
|
SSLError,
|
|
TimeoutError)
|
|
|
|
from .poolmanager import PoolManager
|
|
from .response import HTTPResponse
|
|
from .filepost import encode_multipart_formdata
|