python

发布时间 2023-07-19 15:56:18作者: jf666new

目录

fastapi

下载fastapi依包赖

pip install fastapi -i https://mirrors.aliyun.com/pypi/simple

因为fastapi启动依赖于uvicorn,所以我们还需要安装uvicorn。

pip install uvicorn -i https://mirrors.aliyun.com/pypi/simple

提供api访问路径验证

`from fastapi import FastAPI

app = FastAPI()

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

启动命令

uvicorn main:app --reload

image