aiohttp 请求如何使用代理,大哥们帮帮小弟
資深大佬 : dawnzhu 9
# -*- coding: utf-8 -*- import asyncio import aiohttp import requests '''requests''' res = requests.get('https://icanhazip.com', proxies={'http': 'http://36.249.119.38:9999'}) print(res.text) print("async......") async def func1(): # async async with aiohttp.ClientSession() as session: async with session.get("https://icanhazip.com", proxy='http://36.249.119.38:9999') as r: print('---------------------------------') print(await r.text()) asyncio.run(func1())
请求结果
113.118.175.175
async……
…..aiohttp.client_exceptions.ClientProxyConnectionError: Cannot connect to host 36.249.119.38:9999 ssl:default [Connect call failed (‘36.249.119.38’, 9999)]
大佬有話說 (0)