appwee

Wrapper around peewee with some QoL features


License
MIT
Install
pip install appwee==0.1.1

Documentation

Appwee

peewee wrapper with simple QoL changes

Installation

python -m pip install appwee

Quickstart

import appwee
app = appwee.App(appwee.SqliteDatabase("example.db"))
class ExampleModel(app.Model):
    it_is_just = appwee.IntegerField()
    like_normal_peewee = appwee.BlobField()

if __name__ == "__main__":
    app.init()

See peewee's documentation for more information