当前位置: 首页 > 工具软件 > loop > 使用案例 >

DeprecationWarning: There is no current event loop loop = asyncio.get_event_loop()

金承嗣
2023-12-01

python协程报错:DeprecationWarning: There is no current event loop  loop = asyncio.get_event_loop()

原因是因为是python版本过高(>=3.10),在代码中使用旧的方式获得loop:

loop = asyncio.get_event_loop()

解决方法:

新版/高版本python需要这样获取loop:

loop = asyncio.new_event_loop()

 类似资料:

相关阅读

相关文章

相关问答