Metadata-Version: 1.1
Name: ValidX
Version: 0.4
Summary: fast, powerful, and flexible validator with sane syntax
Home-page: https://bitbucket.org/cottonwood-tech/validx/
Author: Cottonwood Technology
Author-email: info@cottonwood.tech
License: BSD
Description: 
        ValidX
        ======
        
        ValidX is fast_, powerful, and flexible validator with sane syntax.
        
        ..  code-block:: python
        
            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`_.
        
        .. _fast: https://validx.readthedocs.io/en/latest/benchmarks.html
        .. _Read the Docs: https://validx.readthedocs.io/en/latest/
        
        
        Changes
        =======
        
        0.4
        ---
        
        *   Fixed library objects pickling.
        *   Fixed checking of length within ``List`` validator.
        
        
        0.3
        ---
        
        *   Fixed handling of default values and length validation within ``Dict`` validator.
        
        
        0.2
        ---
        
        *   Added support of timezones into ``Date`` and ``Datetime`` validators.
        *   Added support of custom parsers into ``Date``, ``Time``, and ``Datetime`` validators.
        *   Added ``Type`` validator for custom types.
        
        
        0.1
        ---
        
        *   Initial release.
        
Keywords: validator validation validate schema
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
