Files
requests3/requests/packages/urllib3/__init__.py
T
Kenneth Reitz 0db4dab03e urllib3 updates
2011-09-25 16:05:14 -04:00

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