Skip to main content

Simple data validation library

Project description

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.

License

MIT, see the LICENSE file.

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page