fastapi-expert

Installation
SKILL.md

FastAPI Expert

Production-ready FastAPI knowledge covering basic API development to planet-scale deployment.

Quick Start

Create a basic FastAPI application:

from fastapi import FastAPI

app = FastAPI()

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

# Run with: uvicorn main:app --reload
Installs
15
GitHub Stars
1
First Seen
Jan 22, 2026
fastapi-expert — bilalmk/todo_correct