mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 23:10:16 +00:00
c9a188add2
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
14 lines
249 B
Python
14 lines
249 B
Python
from ._sync.connectionpool import (
|
|
ConnectionPool,
|
|
HTTPConnectionPool,
|
|
HTTPSConnectionPool,
|
|
connection_from_url,
|
|
)
|
|
|
|
__all__ = [
|
|
'ConnectionPool',
|
|
'HTTPConnectionPool',
|
|
'HTTPSConnectionPool',
|
|
'connection_from_url',
|
|
]
|