Flask extension to integrate Alembic with Flask-SQLAlchemy.
Project description
Flask-Alembic
Flask-Alembic is a Flask extension that provides a configurable Alembic migration environment around a Flask-SQLAlchemy database.
Installation
Install from PyPI:
$ pip install Flask-Alembic
Basic Usage
You've created a Flask application and some models with Flask-SQLAlchemy. Now start using Flask-Alembic:
from flask_alembic import Alembic
# Intialize the extension
alembic = Alembic()
alembic.init_app(app)
Commands are added to the flask
CLI:
$ flask db --help
$ flask db revision "making changes"
$ flask db upgrade
You can also access Alembic's functionality from Python:
with app.app_context():
# Auto-generate a migration
alembic.revision('making changes')
# Upgrade the database
alembic.upgrade()
# Access the internals
environment_context = alembic.env
Differences from Alembic
- Configuration is taken from
Flask.config
instead ofalembic.ini
andenv.py
. - The migrations are stored directly in the
migrations
folder instead of theversions
folder. - Provides the migration environment instead of
env.py
and exposes Alembic's internal API objects. - Differentiates between CLI commands and Python functions. The functions return revision objects and don't print to stdout.
- Allows operating Alembic at any API level while the app is running, through the exposed objects and functions.
- Does not (currently) support offline migrations. I don't plan to add this but am open to patches.
- Does not (currently) support multiple databases. I plan on adding support for Flask-SQLAlchemy binds and external bases eventually, or am open to patches.
- Adds a system for managing independent migration branches and makes it easier to work with named branches.
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
flask_alembic-3.0.0.tar.gz
(9.3 kB
view details)
Built Distribution
File details
Details for the file flask_alembic-3.0.0.tar.gz
.
File metadata
- Download URL: flask_alembic-3.0.0.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c1e793d978e8adad9a5ae9dcc69ac06fe5ebb6384918922d5b4b0f165f3680f |
|
MD5 | fdc60c762b79c64c3b7de385a19d2c59 |
|
BLAKE2b-256 | 3c497b2e45b820e76ac87a95c688fe678d23b3e44e6fba07f1ad92c8af4665ad |
File details
Details for the file flask_alembic-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: flask_alembic-3.0.0-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae62ce2791ad56a7a88220c60d6e7e8be28479d8aa271e358a0540934705ccc3 |
|
MD5 | abd1cef497753bd221d2504637afeeeb |
|
BLAKE2b-256 | d134b71387899032c3f104b662cac373913970f66b4d854aa1ebe84b63665f37 |