PyValico

Wrapper around the valico rust library for JSON schema validation


Keywords
json-schema, rust-cpython
License
MIT
Install
pip install PyValico==0.0.2

Documentation

PyValico

Small python wrapper around the valico rust library to provide fast JSON schema validation.

Usage

>>> from valico import validate
>>> validate([2,3,4], {"maxItems": 2})
valico.ValidationError: MaxLength condition is not met

TODO

  • Add tests / travis build
  • Benchmark against jsonschema