Metadata-Version: 1.1
Name: python-json2yaml
Version: 0.1.0
Summary: A simple command that turn json data to yaml format and vice versa. It can be used in Linux, MacOS and Window.
Home-page: https://github.com/appstore-zencore/python-json2yaml
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: zencore-json2yaml
        =================
        
        A simple command that turn json data to yaml format and vice versa. It can be used in Linux, MacOS and Window.
        
        
        Install
        -------
        
        ::
        
            pip install python-json2yaml
        
        
        Commands
        --------
        
        - json2yaml
        - yaml2json
        
        
        Command Helpers
        ---------------
        
        ::
        
            E:\code\zencore-json2yaml\test>json2yaml --help
            Usage: json2yaml [OPTIONS] [SRC] [DST]
        
            Options:
            --help  Show this message and exit.
        
            E:\code\zencore-json2yaml\test>yaml2json --help
            Usage: yaml2json [OPTIONS] [SRC] [DST]
        
            Options:
            --help  Show this message and exit.
        
        Command Examples
        ----------------
        
        1. Read json text from stdin and print yaml text to stdout
        
        ::
        
            cat a.json | json2yaml
        
        1. Read json text from stdin and print yaml text to a file
        
        ::
        
            cat a.json | json2yaml - a.txt
        
        1. Read json text from a file and print yaml text to another file
        
        ::
        
            json2yaml a.json a.txt
        
Keywords: python-json2yaml
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires: pyyaml
Requires: click
