PeeweeExtraFields

Collection of Extra Fields for peewee ORM.


License
MIT
Install
pip install PeeweeExtraFields==0.0.5

Documentation

ConfigORM

Build Status PyPI - Status PyPI - Python Version PyPI PyPI - License

Extension for Charles Leifer peewee ORM. Proving several new data field types.

Examples

from PeeweeExtraFields import *
from peewee import *

class Database(Model):
    pass_md5 = PasswordMD5Field()
    pass_sha1 = PasswordSHA1Field()
    mac = MACField()
    sas = SASField()
    i36 = IntegerBase36Field()