2

I am currently developing a new app against postgresql. For ORM and migrations I thought to use SQLAlchemy with alembic.

As I would like to handle migrations on application startup I wondered if there are any python projects (like FlyWay + Spring for java) which already handle this problem.

If this can be handled using other solutions than SQLAlchemy and Alembic I would also consider this helpful!

Thanks in advance!

René Jahn
  • 1,155
  • 1
  • 10
  • 27

2 Answers2

2

SQLAlchemy and Alembic is cool for Python.

But what about yoyo ? https://pypi.org/project/yoyo-migrations/

amer
  • 1,528
  • 1
  • 14
  • 22
1

Pyway https://pypi.org/project/pyway is a database versioning and migration tool inspired by Flyway!

Donnie
  • 200
  • 1
  • 6