Metadata-Version: 1.1
Name: mjson
Version: 0.2.1
Summary: Extended "python -mjson.tool"
Home-page: https://github.com/kjirou/python-mjson
Author: kjirou
Author-email: sorenariblog@gmail.com
License: MIT License
Description: =====
        mjson
        =====
        
        This module is extended "python -mjson.tool".
        
        
        How to use
        ----------
        
        Same the original
        
        .. code-block:: bash
        
           $ echo '{"a":1,"b",2}' | python -mmjson.tool
           {
               "a": 1, 
               "b": 2
           }
        
        
        Change indents
        
        .. code-block:: bash
        
           $ echo '{"a":1,"b",2}' | python -mmjson.tool -i 2
           {
             "a": 1, 
             "b": 2
           }
        
        
Keywords: json,tool,command
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
