异步并发aiohttp

import time
from aiohttp import ClientSession,TCPConnector
from pprint import pprint as print
import asyncio

url = 'https://api.panhvhg.xyz/api/v3/channels/968/connect'
url='https://api.panhvhg.xyz/api/v3/channels/0/connect'
headers = {
    'Host': 'api.panhvhg.xyz',
    'api-version': 'v3.0',
    'request_raw_response_body_tag_header': '8',
    'accept': 'application/json',
    'content-type': 'application/json',
    'accept-language': 'zh-CN',
    'device-identifier': '6961EB763D32FDD1116C00092E0B9365',
    'device-type': 'ANDROID',
    'product-identifier': 'panda',
    'authorization': 'Bearer eyJleHAiOjE3MTM4OTc1NjcsInVzZXJJZCI6MzUyNzQ3NjksImRldmljZUlkIjozNTIzNDgxMCwiaWF0IjoxNjI3NDk3NTY3fQ.AMxXjoPi1HdPTlQ9h3eUq8VFpS40kLDvKTVCt787HQA',
    'user-agent': 'okhttp/4.9.0 android/10(ufkckcuuuccucfc) panda/5.5.0(91)',
   # 'x-timestamp': '1627507529',
    'content-length': '0',
    'accept-encoding': 'gzip',
}

async def make_request(client):
    async with client.post(url, headers=headers) as resp:
        s=await resp.json()
        return s

async def main():
    cons = TCPConnector(limit=11) # 限制 QOS,具体以网速不同而不同,需要测试,同时,需要先导入 aiohttp.TCPConnector 模块
    async with ClientSession(connector=cons) as client:
        starttime = time.time()
        tasks = [asyncio.create_task(make_request(client)) for _ in range(1000)]
        s = await asyncio.gather(*tasks)
        endtime = time.time()
        print(f"QOS:{len(tasks)/(starttime-endtime)}")
        return s

if __name__ == '__main__':
    start = time.time()
    s=asyncio.run(main()) # jupyter 环境使用 await main ()
    print(len(s))
    end = time.time()
    print(f'发送10次请求,耗时:{end - start}')
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

给TA打赏
共{{data.count}}人
人已打赏
Python技术杂烩

Python爬取TG频道图片

2022-12-6 11:32:17

Python

requests、aiohttp、httpx对比

2022-12-6 15:20:04

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
搜索