原因是因为是python版本过高(>=3.10),在代码中使用旧的方式获得loop:
loop = asyncio.get_event_loop()
解决方法:
新版/高版本python需要这样获取loop:
loop = asyncio.new_event_loop()