FastApi学习


导入python 模块:

pip install fastapi[all]

最简单的FastApi文件:

from fastapi import FastAPI

app = FastAPI()


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

如果代码在main.py 文件中:

uvicorn main:app --reload

打开浏览器访问:

http://127.0.0.1:8000

可以看到页面显示:

{"message": "Hello World"}

你可能感兴趣的:(学习,python,开发语言)