初识 FastAPI

安装 FastAPI

# 下载 fastapi 模块
pip install fastapi -i https://pypi.tuna.tsinghua.edu.cn/simple

# 安装 uvicorn 用作服务器
pip install uvicorn -i https://pypi.tuna.tsinghua.edu.cn/simple

get 请求测试

import uvicorn
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
async def get_demo():
    return {"message": "Hello World"}

if __name__ == '__main__':
    uvicorn.run(
                app=app,
                host="127.0.0.1",
                port=5000,
                debug=True
                )

mark

查看Api文档

所有的Api接口文档,都会自动生成,不需要额外的Api测试软件

http://127.0.0.1:5000/docs

mark

发表评论 / Comment

用心评论~