asyncio中常用api说明

gather

gather 起聚合的作用,把多个 futures 包装成单个 future,因为 loop.run_until_complete 只接受单个 future。

run_until_complete

大致原理

asyncio中常用api说明_第1张图片

用法示例

'''
可以接收多种参数
1、单个协程
2、asyncio.wait(多个协程组成的可迭代对象)
3、asyncio.gather(多个协程)
'''
run_until_complete(单个协程|asyncio.wait(协程列表)|asyncio.gather(协程1,...,协程n))

你可能感兴趣的:(Python)