概要 peeweeはPython用のORMです。 以下のデータベースの操作が行えます。 ・SQLite ・MySQL ・Postgres ・AWSP ・BerkeleyDatabase(未検証) 詳細は下記のドキュメントを参照してください。 https://peewee.readthedocs.org/en/latest/index.html 更新履歴 2019.08.03 サンプルコードを変更 Python2.7 → Python3.7 & Peewee 3.9.6 環境 Windows10 Python 3.7.4(32bit) Peewee 3.9.6 インストール方法 from peewee import * from datetime import date db = SqliteDatabase(':memory:') class Person(Model): name = C