Files
requests3/requests/packages/urllib3/__init__.py
T
Kenneth Reitz 84434fddee import urllib3
2011-09-17 20:30:08 -04:00

23 lines
463 B
Python

"""
urllib3 - Thread-safe connection pooling and re-using.
"""
from connectionpool import (
connection_from_url,
get_host,
HTTPConnectionPool,
HTTPSConnectionPool,
make_headers)
# Possible exceptions
from connectionpool import (
HTTPError,
MaxRetryError,
SSLError,
TimeoutError)
from filepost import encode_multipart_formdata
__author__ = "Andrey Petrov (andrey.petrov@shazow.net)"
__license__ = "MIT"
__version__ = "$Rev$"