Jason Miesionczek
Jason Miesionczek

Reputation: 14448

Python ORM that auto-generates/updates tables and uses SQLite?

I am doing some prototyping for a new desktop app i am writing in Python, and i want to use SQLite and an ORM to store data.

My question is, are there any ORM libraries that support auto-generating/updating the database schema and work with SQLite?

Upvotes: 11

Views: 5021

Answers (2)

Nikhil
Nikhil

Reputation: 5781

SQLAlchemy, when used with the sqlalchemy-migrate library.

Upvotes: 2

zweiterlinde
zweiterlinde

Reputation: 14769

SQLAlchemy is a great choice in the Python ORM space that supports SQLite.

Upvotes: 16

Related Questions