用法:
asyncio.run(coro, *, debug=False)
执行协程
coro
并返回结果。此函数运行传递的协程,负责管理异步事件循环
finalizing asynchronous generators
并关闭线程池。当另一个异步事件循环在同一线程中运行时,无法调用此函数。
如果
debug
是True
,则事件循环将以调试模式运行。这个函数总是创建一个新的事件循环并在最后关闭它。它应该用作 asyncio 程序的主要入口点,并且最好只调用一次。
例子:
async def main(): await asyncio.sleep(1) print('hello') asyncio.run(main())
3.7 版中的新函数。
在 3.9 版中更改:更新使用
loop.shutdown_default_executor()
.注意
asyncio.run()
的源代码可以在 Lib/asyncio/runners.py 中找到。
相关用法
- Python asyncio.run_coroutine_threadsafe用法及代码示例
- Python asyncio.BaseTransport.get_extra_info用法及代码示例
- Python asyncio.shield用法及代码示例
- Python asyncio.wait_for用法及代码示例
- Python asyncio.create_task用法及代码示例
- Python asyncio.Task.cancel用法及代码示例
- Python asyncio.loop.run_in_executor用法及代码示例
- Python asyncio.Server用法及代码示例
- Python asyncio.Server.serve_forever用法及代码示例
- Python asyncio.Event用法及代码示例
- Python asyncio.gather用法及代码示例
- Python asyncio.sleep用法及代码示例
- Python asyncio.to_thread用法及代码示例
- Python asyncio.Condition用法及代码示例
- Python asyncio.SelectorEventLoop用法及代码示例
- Python asyncio.Lock用法及代码示例
- Python asyncio.Future.add_done_callback用法及代码示例
- Python asyncio.loop.shutdown_asyncgens用法及代码示例
- Python asyncio.as_completed用法及代码示例
- Python asyncio.Semaphore用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 asyncio.run。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。