Skip to main content

pgsqlasync2fast-fastapi

Simple and fast PostgreSQL async module for FastAPI with multi-database support and automatic database creation.

📖 Conventions reference: this package follows the 2fast-handbook for ecosystem conventions (structure, versioning, README, commits, release).

Features

  • Multiple Database Connections: Configure and manage multiple PostgreSQL databases
  • Async Support: Built on SQLAlchemy 2.0+ async engine with asyncpg
  • Database Creation: Automatic database creation with superuser support
  • FastAPI Integration: Ready-to-use dependencies for seamless FastAPI integration
  • Connection Pooling: Configurable connection pools per database
  • Health Checks: Built-in connection health monitoring
  • Lazy Loading: Engines created only when needed
  • Type Safe: Full Pydantic settings with validation

Installation

pip install pgsqlasync2fast-fastapi

Quick Start

1. Configure your databases in .env

# Default database connection
DB_CONNECTIONS__DEFAULT__HOST=localhost
DB_CONNECTIONS__DEFAULT__PORT=5432
DB_CONNECTIONS__DEFAULT__USERNAME=myuser
DB_CONNECTIONS__DEFAULT__PASSWORD=mypassword
DB_CONNECTIONS__DEFAULT__DATABASE=mydb

# Business database connection
DB_CONNECTIONS__BUSINESS__HOST=localhost
DB_CONNECTIONS__BUSINESS__PORT=5432
DB_CONNECTIONS__BUSINESS__USERNAME=business_user
DB_CONNECTIONS__BUSINESS__PASSWORD=business_password
DB_CONNECTIONS__BUSINESS__DATABASE=business_db

# Admin connection with superuser privileges
DB_CONNECTIONS__ADMIN__HOST=localhost
DB_CONNECTIONS__ADMIN__PORT=5432
DB_CONNECTIONS__ADMIN__USERNAME=postgres
DB_CONNECTIONS__ADMIN__PASSWORD=postgres_password
DB_CONNECTIONS__ADMIN__DATABASE=postgres
DB_CONNECTIONS__ADMIN__IS_SUPERUSER=true

2. Use in FastAPI

from fastapi import FastAPI, Depends
from sqlalchemy.ext.asyncio import AsyncSession
from sqlalchemy import text
from pgsqlasync2fast_fastapi import (
    get_db_session,
    startup_database,
    shutdown_database
)

app = FastAPI()

@app.on_event("startup")
async def startup():
    await startup_database()

@app.on_event("shutdown")
async def shutdown():
    await shutdown_database()

@app.get("/users")
async def get_users(session: AsyncSession = Depends(get_db_session)):
    result = await session.execute(text("SELECT * FROM users"))
    users = result.fetchall()
    return {"users": users}

3. Use Multiple Databases

from functools import partial
from fastapi import Depends
from sqlalchemy.ext.asyncio import AsyncSession
from pgsqlasync2fast_fastapi import get_db_session

# Create dependency for business database
get_business_session = partial(get_db_session, connection_name="business")

@app.get("/business/data")
async def get_business_data(session: AsyncSession = Depends(get_business_session)):
    result = await session.execute(text("SELECT * FROM business_data"))
    return {"data": result.fetchall()}

4. Create Databases Programmatically

from pgsqlasync2fast_fastapi import create_database, database_exists

# Create a new database (requires a connection with is_superuser=true)
if not await database_exists("new_database"):
    await create_database("new_database", owner="myuser")
    print("Database created!")

Configuration

Environment Variables

All configuration is done through environment variables with the prefix DB_:

Connection Settings

DB_CONNECTIONS__<NAME>__HOST=localhost          # Database host
DB_CONNECTIONS__<NAME>__PORT=5432               # Database port
DB_CONNECTIONS__<NAME>__USERNAME=user           # Database username
DB_CONNECTIONS__<NAME>__PASSWORD=pass           # Database password
DB_CONNECTIONS__<NAME>__DATABASE=dbname         # Database name
DB_CONNECTIONS__<NAME>__IS_SUPERUSER=false      # Superuser privileges

Pool Settings (Optional)

DB_CONNECTIONS__<NAME>__POOL_SIZE=5             # Connection pool size
DB_CONNECTIONS__<NAME>__MAX_OVERFLOW=10         # Max overflow connections
DB_CONNECTIONS__<NAME>__POOL_TIMEOUT=30         # Pool timeout in seconds
DB_CONNECTIONS__<NAME>__POOL_RECYCLE=3600       # Recycle connections after seconds

Global Settings

DB_DEFAULT_CONNECTION=default                    # Default connection name
DB_ECHO=false                                    # Global SQLAlchemy echo mode

API Reference

Dependencies

get_db_session(connection_name: str = "default")

FastAPI dependency that provides an async database session with automatic commit/rollback.

@app.get("/items")
async def get_items(session: AsyncSession = Depends(get_db_session)):
    result = await session.execute(text("SELECT * FROM items"))
    return result.fetchall()

get_db_engine(connection_name: str = "default")

FastAPI dependency that provides the async engine for a connection.

@app.get("/health")
async def health_check(engine: AsyncEngine = Depends(get_db_engine)):
    async with engine.connect() as conn:
        await conn.execute(text("SELECT 1"))
    return {"status": "healthy"}

get_db_manager()

FastAPI dependency that provides the DatabaseManager singleton.

@app.get("/connections")
async def list_connections(manager: DatabaseManager = Depends(get_db_manager)):
    return {"connections": manager.list_connections()}

Database Utilities

create_database(database_name: str, owner: Optional[str] = None, connection_name: Optional[str] = None) -> bool

Create a new database using a superuser connection.

created = await create_database("my_new_db", owner="myuser")
if created:
    print("Database created successfully!")

database_exists(database_name: str, connection_name: Optional[str] = None) -> bool

Check if a database exists.

if await database_exists("my_db"):
    print("Database exists!")

drop_database(database_name: str, connection_name: Optional[str] = None, force: bool = False) -> bool

Drop a database (requires superuser).

dropped = await drop_database("old_db", force=True)

list_databases(connection_name: Optional[str] = None) -> List[str]

List all databases.

databases = await list_databases()
for db in databases:
    print(f"  - {db}")

Startup/Shutdown

startup_database(config: Optional[DatabaseSettings] = None) -> DatabaseManager

Initialize database connections on application startup.

@app.on_event("startup")
async def startup():
    await startup_database()

shutdown_database() -> None

Close all database connections on application shutdown.

@app.on_event("shutdown")
async def shutdown():
    await shutdown_database()

Examples

See the examples/ directory for complete working examples:

  • basic_usage.py - Basic database connection and queries
  • multi_database.py - Using multiple database connections
  • fastapi_integration.py - Complete FastAPI application
  • database_creation.py - Creating databases programmatically

License

MIT License - see LICENSE file for details.

Author

Angel Daniel Sanchez Castillo - angeldaniel.sanchezcastillo@gmail.com

Download files

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

Source Distribution

pgsqlasync2fast_fastapi-0.3.1.tar.gz (34.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pgsqlasync2fast_fastapi-0.3.1-py3-none-any.whl (23.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pgsqlasync2fast_fastapi-0.3.1.tar.gz
  • Upload date:
  • Size: 34.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.9

File hashes

Hashes for pgsqlasync2fast_fastapi-0.3.1.tar.gz
Algorithm Hash digest
SHA256 9a659d65ff382d65f594987a77c1cf8f9d629217d4819f8a22fd1d4549b5f82d
MD5 f1218a0fde430cf7c10878c726e572bc
BLAKE2b-256 ad8b709e261df61b688299181fc0df4e81bf4d25e2fa8d0959e66ff16dbbbcab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgsqlasync2fast_fastapi-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 40219031fd66e110c84655d3aff1ace133d4989ae5e182a58e89e9f949355a7e
MD5 949db16adaf407b1dbc5e2cd444c1a58
BLAKE2b-256 1385ae21aa961247b4362606518b27e1f1b8e8361d1199c14979c4a286f7658e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.1 This release

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page