RogerWenXin

Results 3 comments of RogerWenXin

You can get full control to aiohttp session through this: ` from aiohttp_socks import ProxyConnector class CAsyncClient(AsyncClient): def __init__(self,*arg,**args): super().__init__(*arg, **args) def _init_session(self) -> aiohttp.ClientSession: connector = ProxyConnector.from_url('socks5://127.0.0.1:1086') session =...