有什么办法可以用socks proxy来使用aiohttp客户端吗?
看起来像aiohttp.ProxyConnector
不支持袜子代理。 有没有解决方法? 我会很感激任何建议。
你尝试过aiosocks吗?
import asyncio
import aiosocks
from aiosocks.connector import SocksConnector
conn = SocksConnector(proxy=aiosocks.Socks5Addr(PROXY_ADDRESS, PROXY_PORT), proxy_auth=None, remote_resolve=True)
session = aiohttp.ClientSession(connector=conn)
async with session.get('http://python.org') as resp:
assert resp.status == 200
链接地址: http://www.djcxy.com/p/91573.html
上一篇: Is there any way to use aiohttp client with socks proxy?