Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 991
Jason Miesionczek Avatar asked Feb 23 '09 22:02

Jason Miesionczek


2 Answers

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

like image 167
zweiterlinde Avatar answered Oct 17 '22 13:10

zweiterlinde


SQLAlchemy, when used with the sqlalchemy-migrate library.

like image 39
Nikhil Avatar answered Oct 17 '22 12:10

Nikhil