ValidX

fast, powerful, and flexible validator with sane syntax


Keywords
validator, validation, validate, schema, high-performance, python
License
BSD-3-Clause
Install
pip install ValidX==0.8.1

Documentation

ValidX

https://readthedocs.org/projects/validx/badge/?version=latest

ValidX is fast, powerful, and flexible validator with sane syntax.

from validx import Dict, Str

schema = Dict({"message": Str()})
data = {"message": "ValidX is cool!"}

print(schema(data))
{'message': 'ValidX is cool!'}

The full documentation is available at Read the Docs.