DeprecationWarning: There is no current event loop loop = asyncio.get_event_loop()
Posted zhangphil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DeprecationWarning: There is no current event loop loop = asyncio.get_event_loop()相关的知识,希望对你有一定的参考价值。
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()
以上是关于DeprecationWarning: There is no current event loop loop = asyncio.get_event_loop()的主要内容,如果未能解决你的问题,请参考以下文章
在将 appium 作为 DeprecationWarning 运行之前,我有一个警告。它是啥?
DeprecationWarning 之后的“用户不允许执行操作”
DeprecationWarning 之后的“用户不允许执行操作”
Mongoose 警告:DeprecationWarning:当前的服务器发现和监控引擎已弃用?
如何确定地抑制 Python 中的 DeprecationWarning?
如何在 Python 中修复“<string> DeprecationWarning: invalid escape sequence”?