如何为 aiohttp 设置代理
下面是一个示例代码片段,展示了如何使用 aiohttp 设置代理:
import aiohttp
proxy = "http://proxy.example.com:8080"
async with aiohttp.ClientSession() as session:
async with session.get("http://example.com",
proxy=proxy) as resp:
print(resp.status)