跳到主要内容

简介与安装

简介

FastAPI是一个用于构建API的现代、快速的web框架,使用Python3.6+并基于标准的Python类型提示。

特性

  • 性能良好:在python web框架中性能较好,支持异步协程。
  • 基于Pydantic模型,参数校验和类型提示更方便。
  • 支持依赖注入,让用户更高效地进行代码复用
  • 支持WebSocket、GraphQL等
  • 支持异步后台任务
  • 开箱即用地OpenAPI(旧称Swagger)

安装

python -m pip install fastapi[all]

技能图谱

helloworld

# main.py
from fastapi import FastAPI
import uvicorn

app = FastAPI()

@app.get("/")
def index():
return {"Hello": "world"}

if __name__ == '__main__':
# main:app 中的 main 指代码文件 main.py
uvicorn.run(app="main:app",host="127.0.0.1",port=8000)

运行

python main.py
  • Swagger文档地址:http://127.0.0.1:8000/docs
  • ReDoc文档地址:http://127.0.0.1:8000/redoc

wrk测试

Running 30s test @ http://127.0.0.1:8000
6 threads and 500 connections
Thread Stats Avg Stdev Max +/- Stdev
Latency 155.60ms 16.76ms 227.92ms 71.30%
Req/Sec 534.25 109.46 838.00 68.85%
95940 requests in 30.10s, 12.99MB read
Requests/sec: 3187.74
Transfer/sec: 442.05KB

参考