@damien for reasons™ I have to use python/flask. But since I'm planning the next app to use django anyway, I am grateful for the link. Thank you! :)
@codeschubse The classical ORM combination with Flask is SQLAlchemy. For Migrations there is the Alembic package.
I never got the Hang of SQLAlchemy tough, so I am happy I exclusively use Django when I need an ORM.
I could imagine running Flask as a web framework to manage URL routing and such while still using the django ORM by just importing the models into your Flask app.
Would be kind of a Frankenstein project to install django just for the ORM.