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

Core Concepts

Installs
4
First Seen
Mar 2, 2026
fastapi-helper — alijilani-dev/claude