FastAPI 快速搭建一个REST API 服务
2021-03-04 15:27
标签:agg read def pre mod docker href 测试 github 最近正好在看好的接口文档工具 TODO FastAPI 快速搭建一个REST API 服务 标签:agg read def pre mod docker href 测试 github 原文地址:https://www.cnblogs.com/52liming/p/12933955.html快速示例
from fastapi import FastAPI
from pydantic import BaseModel
import uvicorn
app = FastAPI()
class Item(BaseModel):
name: str
price: float
is_offer: bool = None
@app.get("/")
def read_root():
return {"Hello": "FastAPI"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: str = None):
return {"item_id": item_id, "q": q }
# 升级示例
@app.put("/items/{item_id}")
def update_item(item_id: int, item: Item):
return {"item_name": item.name, "item_id": item_id}
if __name__ == ‘__main__‘:
uvicorn.run("main:app", port=5000, reload = True )
启动访问
* 查看 Swagger UI 文档 http://127.0.0.1:5000/docs
* 查看 ReDoc 文档 http://127.0.0.1:5000/redocDocker 部署
官网
文章标题:FastAPI 快速搭建一个REST API 服务
文章链接:http://soscw.com/index.php/essay/60047.html