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

天问 3a77ee722c Update 'README.md' 2 years ago
README.md 3a77ee722c Update 'README.md' 2 years ago

README.md

fastapi

pip install fastapi
pip install uvicorn


from fastapi import FastAPI

app = FastAPI()

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