Metadata-Version: 1.1
Name: microschema
Version: 0.5
Summary: MicroSchema is a schema validation library for Python.
Home-page: http://github.com/amibiz/microschema
Author: Ami E. Bizamcher
Author-email: ami.bizamcher@gmail.com
License: BSD
Description: .. image:: https://travis-ci.org/amibiz/microschema.svg?branch=develop
            :target: https://travis-ci.org/amibiz/microschema
        
        .. image:: https://coveralls.io/repos/github/amibiz/microschema/badge.svg
            :target: https://coveralls.io/github/amibiz/microschema
        
        MicroSchema
        -----------
        
        Example:
        
            >>> import microschema
            >>> schema = {
            ...     'username': {'type': str, 'required': True},
            ...     'score': {'type': int},
            ... }
            >>> data = {
            ...     'username': 'foobar',
            ...     'score': 10000,
            ... }
            >>> print(microschema.validate(schema, data))
        
        
        Python Compatibility
        --------------------
        
        Python 2.7 and 3.3+ are supported.
        
Keywords: microschema schema validate validation validator micro
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
