用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。