FastCrud is a designed to simplify the creation of CRUD APIs using FastAPI and MongoDB.
FastCrud
allows you to quickly set up CRUD routes for your data models with minimal configuration. By extending the FastCrud class, you can automatically generate standard CRUD endpoints, and you also have the option to add custom routes to meet specific requirements.
- Automatic CRUD Routes: Provides standard CRUD operations (Create, Read, Update, Delete) for your models.
- Seamless Integration: Works with FastAPI and MongoDB for efficient and scalable API development.
- Python 3.11+
-
Clone the Repository
git clone https://github.com/patrickpasquini/fast_crud.git cd fast_crud
-
Install Dependencies
pip install -r requirements.txt