11

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?

Jason Miesionczek
  • 14,268
  • 17
  • 76
  • 108

2 Answers2

16

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

zweiterlinde
  • 14,557
  • 2
  • 27
  • 32
2

SQLAlchemy, when used with the sqlalchemy-migrate library.

Nikhil
  • 5,705
  • 1
  • 32
  • 30