FastAPI
All about FastAPI development
pip install fastapi uvicornSimple Example
Last updated
All about FastAPI development
pip install fastapi uvicornLast updated
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
uvicorn main:app --reload