Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 865 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 865 Bytes

Fast Crud

FastCrud is a designed to simplify the creation of CRUD APIs using FastAPI and MongoDB.

Overview

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.

Features

  • 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.

Prerequisites

  • Python 3.11+

Getting Started

  1. Clone the Repository

    git clone https://github.com/patrickpasquini/fast_crud.git
    cd fast_crud
    
  2. Install Dependencies

    pip install -r requirements.txt