Metadata-Version: 2.1
Name: PeeweeExtraFields
Version: 0.0.4
Summary: Collection of Extra Fields for peewee ORM.
Home-page: https://github.com/YADRO-KNS/PeeweeExtraFields
Author: Sergey Parshin
Author-email: parshinsp@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: peewee (>=3.9.6)

# ConfigORM
[![Build Status](https://travis-ci.com/YADRO-KNS/PeeweeExtraFields.svg?branch=master)](https://github.com/YADRO-KNS/PeeweeExtraFields)
![PyPI - Status](https://img.shields.io/pypi/status/PeeweeExtraFields.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/PeeweeExtraFields.svg)
![PyPI](https://img.shields.io/pypi/v/PeeweeExtraFields.svg)
![PyPI - License](https://img.shields.io/pypi/l/PeeweeExtraFields.svg)
----

Extension for Charles Leifer [peewee](https://github.com/coleifer/peewee) ORM.
Proving several new data field types.



Examples
--------

```python
from PeeweeExtraFields import *
from peewee import *

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



