Simplifies FastAPI API development by automatically generating CRUD endpoints from data models.
This package extends FastAPI's native APIRouter to automatically create and document standard Create, Read, Update, and Delete routes for your Pydantic models. You install it with `pip install fastapi-crudrouter` and integrate it into your FastAPI app using `app.include_router(CRUDRouter(schema=YourModel))` for quick setup.
Simplifies FastAPI API development by automatically generating CRUD endpoints from data models.
FastAPI developers looking to rapidly build data-driven APIs without repetitive route definition.