Python Web 框架
django
FastAPI
路由
OpenAPI 文档相关
中间件
日志
第一种,就像写脚本那样记录日志。 具体到fastapi框架中,可以在初始化时建立一个全局的logger,然后其它模块获取该logger即可输出日志。当然最好的方式是像 go Macaron web框架那样, 在中间件中创建一个logger对象然后传递到其它路由中调用,可以fastAPI不支持这种模式。
第二种,记录 uvicorn 的日志
第三种,配置 uvicorn 的日志
单元测试
依赖
1
pip install httpx pytest
参考
Sanic
- Sanic Sanic is a Python 3.8+ web server and web framework that’s written to go fast. It allows the usage of the async/await syntax added in Python 3.5