Reputation: 14448
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
Reputation: 14769
SQLAlchemy is a great choice in the Python ORM space that supports SQLite.
Upvotes: 16