peewee

<Pandas, peewee, sqlite> peeweeを少しためす。

peeweeを少しためしてみた。 まずは、データベースdatabase作成とデータ登録。 In [51]: from peewee import * In [52]: db = SqliteDatabase('people.db') In [53]: class Person(Model): ...: name = CharField() ...: birthday = DateField() ...: is_rel…

<Python, peewee, Windows, Visual Studio> peewee を入れた。

オブジェクト リレイション マッパー ORM (Object Relation Mapper)の、 peeweeがSQL Alchemyと比べて操作簡単そうなので、入れてみた。 が、いろいろメンドクサカッタので、メモ。 その1) pipでインストールをしてみた。 が、エラー。``` % pip install p…