-
许多请求可通过无效的简易接口异步执行,该接口还提供了辅助函数以执行并行异步协程,尤其适用于处理尴尬的场景
资源介绍
many_requests
无效的简易接口,用于异步执行许多HTTP请求。 它已经在野外经过了超过1000万个请求的测试。 自动处理错误并执行重试。
建在的顶部并。 界面受和启发。
还提供了用于执行异步协程的辅助函数。
安装:
pip install many-requests
用法示例
对example.org执行10个GET请求:
from many_requests import ManyRequests
responses = ManyRequests ( n_workers = 5 , n_connections = 5 )(
method = 'GET' ,
url = [ 'https://example.org' for i in range ( 10 )])
查询HackNews API的10个