24 lines
448 B
Python
24 lines
448 B
Python
__title__ = 'httpx-socks'
|
|
__version__ = '0.9.2'
|
|
|
|
from python_socks import (
|
|
ProxyError,
|
|
ProxyTimeoutError,
|
|
ProxyConnectionError,
|
|
ProxyType
|
|
)
|
|
|
|
from ._sync_transport import SyncProxyTransport
|
|
from ._async_transport import AsyncProxyTransport
|
|
|
|
__all__ = (
|
|
'__title__',
|
|
'__version__',
|
|
'SyncProxyTransport',
|
|
'AsyncProxyTransport',
|
|
'ProxyError',
|
|
'ProxyTimeoutError',
|
|
'ProxyConnectionError',
|
|
'ProxyType',
|
|
)
|