on_starting 或类似的东西 - Python
Posted
技术标签:
【中文标题】on_starting 或类似的东西 - Python【英文标题】:on_starting or someting like - Python 【发布时间】:2019-12-21 16:19:34 【问题描述】:我只是想知道 Asyncio 是否有类似“on_starting”的东西
例子:
import asyncio
async def on_starting():
print("Starting ...")
async def on_ready():
print("successfully starting")```
【问题讨论】:
您希望它何时运行?在程序开始时? 不是真的,事实上我希望当我启动程序时,它会在加载过程中自动启动 【参考方案1】:import asyncio
async def main():
print('event loop started')
await asyncio.sleep(1)
print('event loop starting')
asyncio.run(main())
print('event loop finished')
这能回答你的问题吗?
【讨论】:
以上是关于on_starting 或类似的东西 - Python的主要内容,如果未能解决你的问题,请参考以下文章