4

我正在寻找使用 python 3 的异步等待功能的示例。我正在使用 falcon 框架来构建 rest api。无法弄清楚如何使用异步等待。

请通过提供一些示例来帮助我,也许还有其他框架。

谢谢!

4

2 回答 2

3

更新:从Falcon 3.0开始,该框架支持async/await通过 ASGI 协议。

为了编写异步 Falcon 代码,您需要使用ASGI 风格App,例如:

import http

import falcon
import falcon.asgi


class MessageResource:
    def __init__(self):
        self._message = 'Hello, World!'

    async def on_get(self, req, resp):
        resp.media = {'message': self._message}

    async def on_put(self, req, resp):
        media = await req.get_media()
        message = media.get('message')
        if not message:
            raise falcon.HTTPBadRequest

        self._message = message
        resp.status = http.HTTPStatus.NO_CONTENT


app = falcon.asgi.App()
app.add_route('/message', MessageResource())

假设上面的代码片段保存为test.py,ASGI 应用程序可以运行为

uvicorn test:app

使用HTTPie设置和检索消息:

$ http PUT http://localhost:8000/message message=StackOverflow
HTTP/1.1 204 No Content
server: uvicorn
$ http http://localhost:8000/message 
HTTP/1.1 200 OK
content-length: 28
content-type: application/json
server: uvicorn

{
    "message": "StackOverflow"
}

请注意,当使用 Falcon 的 ASGI 风格时,所有响应者、钩子、中间件方法、错误处理程序等都必须是可等待的协程函数,因为框架不会在执行程序中执行任何隐式包装或调度。

另请参阅Falcon 的 ASGI 教程

于 2021-04-11T19:57:41.077 回答
0

Falson 的常见问题解答声明他们目前不支持asyncio

于 2019-09-21T09:11:45.867 回答