fix: 修复代理问题

This commit is contained in:
丹尼尔
2026-03-15 17:16:05 +08:00
parent 8b62c445fc
commit 15c9e1772a
100 changed files with 6157 additions and 69 deletions

View File

@@ -0,0 +1,23 @@
__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',
)