using-peewee-orm
Installation
SKILL.md
Python Peewee
Bind models at an application or test boundary; keep connection lifetime, transaction lifetime, and schema lifecycle explicit.
Model Setup
from peewee import DatabaseProxy, Model, SqliteDatabase
db_proxy = DatabaseProxy()
class BaseModel(Model):
class Meta:
database = db_proxy