Metadata-Version: 2.1
Name: PyValico
Version: 0.0.1
Summary: Wrapper around the valico rust library for JSON schema validation
Home-page: https://github.com/s-knibbs/pyvalico
Author: Simon Knibbs
Author-email: simon.knibbs@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries

# PyValico

Small python wrapper around the [valico](https://github.com/rustless/valico) rust library to provide fast JSON schema validation.

## Usage

```python
>>> 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](https://github.com/Julian/jsonschema)


