Python lightweight database wrapper for SQLite

前端 未结 7 496
离开以前
离开以前 2021-02-01 15:01

Is there a lightweight database wrapper in Python that I can use for SQLite. I would like something like Django\'s ORM, but that I can just point to a database file and it\'ll m

相关标签:
7条回答
  • 2021-02-01 15:49

    Yeah, SQLAlchemy is great, but there are also other options. One of them is Peewee. Very lightweight and it may fits perfectly with what you are looking for.

    https://github.com/coleifer/peewee

    0 讨论(0)
提交回复
热议问题