快速入门
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