FastAPI
Installation
SKILL.md
FastAPI Development
Guidance for building APIs with FastAPI following best practices.
Core Concepts
Route Decorators
| Decorator | HTTP Method | Use Case |
|---|---|---|
@app.get() |
GET | Retrieve data |
@app.post() |
POST | Create resource |
@app.put() |
PUT | Full update |
@app.patch() |
PATCH | Partial update |
@app.delete() |
DELETE | Remove resource |