关于mysql:python项目中的Liquibase集成

Liquibase integration in python project

我计划使用 Liquibase(https://www.liquibase.org) 来管理 Oracle 数据库模式的迁移/版本控制。该项目在 Python 中使用 setuptools。
我还看到了 Liquibase 的 Python package器,但它们似乎没有得到很好的维护。

有没有人有在 python 项目中集成 Liquibase 的经验?还是类似的?


你在使用 SQLAlchemy 吗?因为有一个管理数据库迁移的工具:Alembic

Alambic 也被包裹在另一个 Python Framwework 中,例如特定模块中的 Flask 作为 Flask-migration。