π FastAPI Cheat Sheet
β
Install FastAPI and Uvicorn
pip install fastapi uvicorn
π Run Your App
uvicorn main:app --reload
Note: main is your Python file, app is the FastAPI instance.
π§± Basic Setup
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_ro...
dgostin.hashnode.dev2 min read