A framework-independent modern wrapper for SQLAlchemy & Alembic
Project description
A friendly wrapper for modern SQLAlchemy (v1.4 or later) and Alembic.
Documentation: https://sqla-wrapper.scaletti.dev/
Includes:
-
A SQLAlchemy wrapper, that does all the SQLAlchemy setup and gives you:
- A scoped session extended with some useful active-record-like methods.
- A declarative base class.
- A helper for performant testing with a real database.
from sqla_wrapper import SQLAlchemy db = SQLAlchemy("sqlite:///db.sqlite", **options) # You can also use separated host, name, etc. # db = SQLAlchemy(user=…, password=…, host=…, port=…, name=…)
-
An Alembic wrapper that loads the config from your application instead of from separated
alembic.ini
andenv.py
files.from sqla_wrapper import Alembic, SQLAlchemy db = SQLAlchemy(…) alembic = Alembic(db, "db/migrations")
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
sqla_wrapper-6.0.0.tar.gz
(10.3 kB
view hashes)
Built Distribution
Close
Hashes for sqla_wrapper-6.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39665c54c310a40832bf79db36c6c4230d5654a73b109847203cd6b98c93af95 |
|
MD5 | 273827a6de12b3957bdb9ba1adc38d33 |
|
BLAKE2b-256 | 92f664a83b9b5a58ca1b9ac7f174ce577df977f8998044cf707cf10fc192c681 |