安装 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 )
查看Api文档
所有的Api接口文档,都会自动生成,不需要额外的Api测试软件
http://127.0.0.1:5000/docs
版权声明:《 初识 FastAPI 》为明妃原创文章,转载请注明出处!
最后编辑:2020-5-21 02:05:16