fastapi-helper
Installation
SKILL.md
FastAPI Helper
Build modern, high-performance Python APIs with FastAPI.
Quick Start
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}
Run: uvicorn main:app --reload