Metadata-Version: 1.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
Description-Content-Type: UNKNOWN
Description: # 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)
        
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
