python-fastapi
Installation
SKILL.md
Quick Reference
| Layer | File | Purpose |
|---|---|---|
| Entrypoint | main.py |
App factory, lifespan |
| Config | config.py |
pydantic-settings |
| Routes | api/v1/endpoints/ |
Endpoint handlers |
| Schemas | schemas/ |
Pydantic models |
| Models | models/ |
SQLAlchemy models |
| Services | services/ |
Business logic |
| Deps | api/deps.py |
Dependency injection |
| Pydantic Pattern | Use Case |
|---|---|
UserCreate |
Input for creation |
UserUpdate |
Input for updates |
UserResponse |
API output |
UserInDB |
Internal with hash |