Metadata-Version: 1.1
Name: colander_jsonschema
Version: 0.2
Summary: JSON-Schema converter for colander
Home-page: https://github.com/gjo/colander_jsonschema
Author: OCHIAI, Gouji
Author-email: gjo.ext@gmail.com
License: BSD
Description: ===================
        colander_jsonschema
        ===================
        
        
        Convert colander schema to jsonschema compatible dictionary.
        
        Inspired by "Audrey"'s `colanderutil.py`
        
        
        Install
        =======
        
        from PyPI::
        
          pip install colander_jsonschema
        
        
        from source::
        
          python setup.py install
        
        
        Running
        =======
        
        In your source::
        
          import json
          from colander_jsonschema import convert
        
          converted = convert(YourColanderSchema())
          with open('some/path.json') as fp:
              json.dump(converted, fp)
        
        
        TODO: create useful interfaces
        
        
        Planned Features
        ================
        
        * auto-discover schemas
        * setuptools integration
        
        
        Change History
        ==============
        
        0.2 - 2014-10-06
        ----------------
        - python3 support
        
        0.1 - 2014-10-04
        ----------------
        - Initial release.
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Framework :: Pylons
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Text Processing
