Skip to main content

A package for generating FastAPI CRUD operations and routes

Project description

CRUD FORGE

PyPI version Documentation Status

Overview

CRUD FORGE is a powerful Python package that revolutionizes the creation of CRUD (Create, Read, Update, Delete) operations for FastAPI applications. It automatically generates API routes, database models, and even provides metadata endpoints, significantly reducing development time and boilerplate code.

Key Features

  • Automatic Model Generation: Instantly create SQLAlchemy and Pydantic models from your existing database schema.
  • Dynamic CRUD Route Generation: Automatically generate FastAPI routes for all your models.
  • Metadata API: Built-in routes to explore your database structure programmatically.
  • Flexible Database Connection Management: Easy setup for various database types including PostgreSQL, MySQL, and SQLite.
  • Customizable Route Generation: Tailor the generated routes to your specific needs.
  • Advanced Filtering: Built-in filtering capabilities for GET requests.
  • Comprehensive Error Handling: Robust error management out of the box.
  • Type Hinting: Full type hint support for better IDE integration and code quality.

Installation

Install CRUD FORGE using pip:

pip install crud-forge==0.1.7

Quick Start

Here's how you can leverage CRUD FORGE's automatic generators:

from fastapi import FastAPI
from forge.db import DBForge
from forge.models import generate_models_from_metadata
from forge.crud import generate_crud
from forge.routes import generate_metadata_routes, generate_default_routes

# Set up FastAPI app and database
app = FastAPI()
db_manager = DBForge(db_url="postgresql://user:password@localhost/dbname")

metadata = db_manager.metadata  # get the metadata from the database

# recieve the fastapi app to generate default routes
generate_default_routes(app)

# Generate metadata routes
app.include_router(generate_metadata_routes(metadata, db_manager.get_db))

# Automatically generate models from database metadata
models = generate_models_from_metadata(metadata)

# Generate CRUD routes for all models
for schema, models in models.items():
    for table_name, (sqlalchemy_model, pydantic_model) in models.items():
        generate_crud(sqlalchemy_model, pydantic_model, app, db_manager.get_db)

# Run the app
if __name__ == "__main__":
    import uvicorn
    uvicorn.run(app, host="0.0.0.0", port=8000)

This example automatically generates models and CRUD routes for your entire database schema!

Package Structure

CRUD FORGE MAIN STRUCTURE

Detailed Usage

Database Connection

Use the DBForge to set up your database connection:

from forge.db import DBForge

# Using a database URL
db_manager = DBForge(db_url="postgresql://user:password@localhost/dbname")

# Or using individual parameters
db_manager = DBForge(
    db_type="postgresql",
    user="user",
    password="password",
    host="localhost",
    database="dbname"
)

Automatic Model Generation

Use generate_models_from_metadata to automatically create models:

from forge.models import generate_models_from_metadata

models = generate_models_from_metadata(db_manager.metadata)

Dynamic CRUD Route Generation

Generate CRUD routes for all your models dynamically:

from forge.crud import generate_crud

for schema, models in models.items():
    for table_name, (sqlalchemy_model, pydantic_model) in models.items():
        generate_crud(sqlalchemy_model, pydantic_model, app, db_manager.get_db, tags=[f"{schema}_{table_name}"])

Metadata API

CRUD FORGE includes built-in routes to explore your database structure:

from forge.routes import generate_metadata_routes

metadata_router = generate_metadata_routes(db_manager.metadata, db_manager.get_db)
app.include_router(metadata_router)

This will create the following endpoints:

  • GET /dt/schemas: List all schemas in the database
  • GET /dt/{schema}/tables: List all tables in a specific schema
  • GET /dt/{schema}/{table}/columns: Get details of columns in a specific table

Default Routes

CRUD FORGE can generate some default routes for your application:

from forge.routes import generate_default_routes

generate_default_routes(app)

This will create the following endpoints:

  • GET /: Root endpoint with basic API information
  • GET /health: Health check endpoint
  • GET /version: Version information endpoint

Documentation

For more detailed information about the API and advanced usage, please refer to our documentation.

Contributing

We welcome contributions! Please see our Contributing Guide for more details.

License

CRUD FORGE is released under the MIT License. See the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

crud_forge-0.3.1.tar.gz (19.3 kB view details)

Uploaded Source

Built Distribution

crud_forge-0.3.1-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file crud_forge-0.3.1.tar.gz.

File metadata

  • Download URL: crud_forge-0.3.1.tar.gz
  • Upload date:
  • Size: 19.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for crud_forge-0.3.1.tar.gz
Algorithm Hash digest
SHA256 ded87902da4734a7eb4e97f5b0e361e73160e15a9b665b430fa4d47a1db07499
MD5 5565a1c669838f848ee497cb532eb597
BLAKE2b-256 1ff3eec369a5f68e5abe0fda88a05defc6c0724bb7bc99332d7c297535b20175

See more details on using hashes here.

File details

Details for the file crud_forge-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: crud_forge-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for crud_forge-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0af7a8f3ace6535e3bc29f6a4f09990c92476c302eb66f35289a8672a2b76560
MD5 e76c9f1e9dc593e1e1be7fec1b83ef56
BLAKE2b-256 9bf624426f9587aa78f26a6250741de1547b3577fff94f01e9ae0a7459af8b51

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page