python项目中的Liquibase集成

Tib*_*bor 6 python mysql oracle liquibase mariadb

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

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

use*_*947 2

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

Alambic 也被封装在另一个 Python Framwework 中,就像特定模块中的 Flask 一样,如 Flask-migration。