FastAPI 是一个高性能 Web 框架,用于构建 API

liuyuqi-dellpc b562e9b8bb init 1 year ago
.vscode b562e9b8bb init 1 year ago
backend b562e9b8bb init 1 year ago
deploy b562e9b8bb init 1 year ago
docs b562e9b8bb init 1 year ago
frontend b562e9b8bb init 1 year ago
.dockerignore b562e9b8bb init 1 year ago
.env b562e9b8bb init 1 year ago
Dockerfile b562e9b8bb init 1 year ago
README.md b562e9b8bb init 1 year ago
docker-compose.debug.yml b562e9b8bb init 1 year ago
docker-compose.yml b562e9b8bb init 1 year ago
requirements.txt b562e9b8bb init 1 year ago

README.md

fastapi

fastapi

pip install fastapi
pip install uvicorn


from fastapi import FastAPI

app = FastAPI()

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