Files
requests3/requests/core/http_manager/connectionpool.py
T
kennethreitz c9a188add2 requests core
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2018-03-16 18:16:55 -04:00

14 lines
249 B
Python

from ._sync.connectionpool import (
ConnectionPool,
HTTPConnectionPool,
HTTPSConnectionPool,
connection_from_url,
)
__all__ = [
'ConnectionPool',
'HTTPConnectionPool',
'HTTPSConnectionPool',
'connection_from_url',
]