How to persist data between executions in Python

后端 未结 6 813
栀梦
栀梦 2021-01-19 05:58

I am working on a personal project in Python where I need some form of persistent data. The data would fit in 2-3 tables of 10-20 columns and 100-200 records each. I have

6条回答
  •  天命终不由人
    2021-01-19 06:28

    Peewee is another ORM that works with SQLite. It is an alternative to SQLAlchemy. If using SQLite, I would consider Peewee for pet projects and SQLAlchemy for professional work. I typically would not use SQLite directly.

提交回复
热议问题