Metadata-Version: 1.1
Name: simplicity
Version: 0.4.2
Summary: Converts ReStructuredText into JSON
Home-page: https://github.com/pydanny/simplicity
Author: Daniel Greenfeld
Author-email: pydanny@gmail.com
License: MIT
Description: simplicity
        ==========
        
        Converts ReStructuredText into JSON.
        
        Usage
        -------
        
        Input
        
        .. code-block:: RestructuredText
        
            Python
            ------
            :age: 22
            :typing: dynamic, strong
            
            Java 
            ----
            :age: 18
            :typing: static, strong
            
        Output
        
        .. code-block:: JavaScript
        
            [
                {"Python":
                    {"age": 22, "typing": "dynamic, strong"}
                },
                {"Java":
                    {"age": 18, "typing": "static, strong"}
                },
            ]
            
        Try it out!
        ------------
        
        .. code-block:: bash
        
            $ git clone git@github.com:pydanny/simplicity.git
            $ cd simplicity/
            $ python simplicity.py sample.rst
            <type 'str'>
            [{"Python": {"age": 22, "typing": "dynamic, strong"}},
            {"Java ": {"age": 18, "typing": "static, strong"}},
            {"GitHub": {"url": "https://github.com", 
                "description": "Build software better, together."}}]
        
        
        0.4.2 (2013-07-15)
        
            * Fix console script entry point
        
        0.4.1 (2013-07-15)
        
            * History update
        
        0.4.0 (2013-07-15)
        
            * added type converter
        
        0.3.0 (2013-07-15)
        
            * Accepts command-line argument
        
        0.2.0 (2013-07-15)
        
            * Working prototype
        
        0.1.0 (2013-07-15)
        
            * Pain point
            * Inspiration
Keywords: python,json
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup
