decent

Simple data validation library


License
MIT
Install
pip install decent==0.1.0.dev1

Documentation

decent

Decent is a data validation library for Python 2 & 3. There are many like it, but this one is mine.

Read the documentation for more details.

Quick example

from decent import *

schema = Schema({
    'name': All(Strip(), NotEmpty()),
    'age': Range(min=0, max=200),
})

try:
    output = schema(input)
    ...
except Invalid as e:
    print('\n'.join(e.messages))
    ...

Thanks

This library takes inspiration from Voluptuous and Good, but doesn't implement many of their more magical features. You may be interested in them if you find yourself wanting more.

Links

License

MIT, see the LICENSE file.