python框架fastapi, AttributeError: module 'asyncio' has no attribute 'iscoroutinefunction&

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python框架fastapi, AttributeError: module 'asyncio' has no attribute 'iscoroutinefunction&相关的知识,希望对你有一定的参考价值。

看看是不是这个原因

参考技术A import asyncio

async def hello(name):
print('Hello,', name)

# 定义协程对象
coroutine = hello("World")

# 定义事件循环对象容器
loop = asyncio.get_event_loop()
# task = asyncio.ensure_future(coroutine)

# 将协程转为task任务
task = loop.create_task(coroutine)

# 将task任务扔进事件循环对象中并触发
loop.run_until_complete(task)
————————————————
版权声明:本文为CSDN博主「zbingley」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/zbingley/article/details/88599400

以上是关于python框架fastapi, AttributeError: module 'asyncio' has no attribute 'iscoroutinefunction&的主要内容,如果未能解决你的问题,请参考以下文章

API接口开发其实特简单,Python FastApi Web 框架教程来了

python fastapi 返回echart

python框架fastapi, AttributeError: module 'asyncio' has no attribute 'iscoroutinefunction&

FastAPI - 一款新型的 Python Web 框架(对比 Flask)

Python FastAPI 框架 操作Mysql数据库 增删改查

FastAPI 1:安装FastAPI