this mixin wraps just a few Peewee methods
Model.create_table() | .load() if Meta.mirroring is True |
Model.save() | deta.Base(table_name).put( dirty_fields or all columns ) |
Model.insert() | calls .save() |
Model.create() | calls .save() |
Model.update() | not wrapped |
Model.Meta.deta | deta.Deta(DETA_KEY) |
Model.Meta.mirroring | always sync full table, after create & before exit , False default |
- It's opensource and free software, see the LICENSE for more details
- ssqlite3 store binary
datafile.sqlite3
in DetaBase tables - ODetaM Object Document Mapper for DetaBase based on pydantic
- detadantic Active-Record style wrappers to Deta Base
- deta-base-pydantic
- csv-deta