Metadata-Version: 1.1
Name: microschema
Version: 0.3
Summary: MicroSchema is a schema validation framework for Python.
Home-page: http://github.com/amibiz/microschema
Author: Ami E. Bizamcher
Author-email: ami.bizamcher@gmail.com
License: BSD
Description: MicroSchema
        -----------
        
        Example:
        
            >>> import microschema
            >>> schema = {
            ...     'username': {'type': str, 'required': True},
            ...     'score': {'type': int},
            ... }
            >>> data = {
            ...     'username': 'foobar',
            ...     'score': 10000,
            ... }
            >>> print microschema.validate(schema, data)
        
        
Keywords: microschema schema validate validation validator micro
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
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
