A package to generating FastAPI CRUD operations and routes
Project description
API Forge
Overview
API Forge is a Python library built on top of FastAPI that streamlines database model management and API route generation. It provides a comprehensive type system for managing API responses, reducing boilerplate code, and ensuring type safety throughout your application.
The library automatically generates API routes, database models, and metadata endpoints, significantly reducing development time while maintaining code quality and type safety.
Key Features
- Automatic Model Generation: Creates SQLAlchemy and Pydantic models from your existing database schema
- Dynamic Route Generation: Automatically generates FastAPI routes for tables, views, and functions
- Database Function Support: Native support for PostgreSQL functions, procedures, and triggers
- Metadata API: Built-in routes to explore your database structure programmatically
- Flexible Database Connection: Support for PostgreSQL, MySQL, and SQLite with connection pooling
- Advanced Type System: Comprehensive type handling including JSONB and Array types
- Schema-based Organization: Route organization based on database schemas
- Full Type Hinting: Complete type hint support for better IDE integration
Installation
Install API Forge using pip:
pip install api-forge
Quick Start
Here's how to quickly set up an API with API Forge:
from fastapi import FastAPI
from forge import * # import mod prelude (main structures)
# ? DB Forge ----------------------------------------------------------------------------------
# Configure database connection
db_manager = DBForge(
config=DBConfig(
db_type="postgresql",
driver_type="sync",
database="mydb",
user="user",
password="password",
host="localhost",
port=5432,
pool_config=PoolConfig(
pool_size=5,
max_overflow=10,
pool_timeout=30,
pool_pre_ping=True
)
)
)
db_manager.log_metadata_stats() # Log db metadata statistics
# ? Model Forge -------------------------------------------------------------------------------
model_forge = ModelForge(
db_manager=db_manager,
# * Define the schemas to include in the model...
include_schemas=['public', 'app', 'another_schema'],
)
model_forge.log_schema_tables() # detailed log of the tables in the schema
model_forge.log_schema_views() # detailed log of the views in the schema
model_forge.log_schema_fns() # detailed log of the functions in the schema
model_forge.log_metadata_stats() # Log model metadata statistics
# ? Main API Forge ----------------------------------------------------------------------------
app: FastAPI = FastAPI() # * Create a FastAPI app (needed when calling the script directly)
app_forge = Forge( # * Create a Forge instance
app=app,
info=ForgeInfo(
PROJECT_NAME="MyAPI",
VERSION="1.0.0"
)
)
# * The main forge store the app and creates routes for the models (w/ the static type checking)
app_forge.gen_metadata_routes(model_forge) # * add metadata routes (schemas, tables, views, fns)
app_forge.gen_health_routes(model_forge) # * add health check routes
# * Route Generators... (table, view, function)
app_forge.gen_table_routes(model_forge) # * add db.table routes (ORM CRUD)
app_forge.gen_view_routes(model_forge) # * add db.view routes
app_forge.gen_fn_routes(model_forge) # * add db.[fn, proc, trigger] routes
Then run the application using Uvicorn:
uvicorn myapi:app --reload
Or run the script directly:
if __name__ == "__main__":
import uvicorn # import the Uvicorn server (ASGI)
uvicorn.run(
app=app,
host=app_forge.uvicorn_config.host,
port=app_forge.uvicorn_config.port,
reload=app_forge.uvicorn_config.reload
)
Generated Routes
API Forge automatically generates the following types of routes:
Table Routes
POST /{schema}/{table}- CreateGET /{schema}/{table}- Read (with filtering)PUT /{schema}/{table}- UpdateDELETE /{schema}/{table}- Delete
View Routes
GET /{schema}/{view}- Read with optional filtering
Function Routes
POST /{schema}/fn/{function}- Execute functionPOST /{schema}/proc/{procedure}- Execute procedure
Metadata Routes
GET /dt/schemas- List all database schemas and their structuresGET /dt/{schema}/{{tables, views, fns}}- List all tables, views, or functions in a schema
Health Check Routes
GET /health- Get API health status and version informationGET /health/ping- Basic connectivity checkGET /health/cache- Check metadata cache statusPOST /health/clear-cache- Clear and reload metadata cache
License
API Forge is released under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file api_forge-0.0.10.tar.gz.
File metadata
- Download URL: api_forge-0.0.10.tar.gz
- Upload date:
- Size: 30.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7af5057d72e43d1f97a2799b2c458807da9104e5fcaf883cb7ce71dafc9bf6d9
|
|
| MD5 |
5e4b1eb92948b9e4a3ad81a2dece5243
|
|
| BLAKE2b-256 |
cea3b1ea91ec63a2a89fb835aa6f05ec450f95d7651fb6f281f2c30992fd7ffe
|
File details
Details for the file api_forge-0.0.10-py3-none-any.whl.
File metadata
- Download URL: api_forge-0.0.10-py3-none-any.whl
- Upload date:
- Size: 34.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8817fe7d312ab37c044734162b2bc47bfdaec15397bebd72248ffd6081cf8d8
|
|
| MD5 |
255e20aa27846c956c9800e3e87a2991
|
|
| BLAKE2b-256 |
1d999736a08fd1220dee30b24748756fcc8fabdba343d559227245eb3e145d23
|