Metadata-Version: 2.1
Name: json2toml
Version: 2023.10.4
Summary: ## shell command toolkit :: convert json to toml
Home-page: https://git.minieye.tech/nico/wehook-cli
Author: Nico Ning
Author-email: ningrong@minieye.cc
License: MIT
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown

# json2toml

- 命令行工具(v2023.10.04)

-----

```
usage: 

## shell command toolkit :: convert json to toml
    
    json2toml (2023.10.04)

eg:
  [0] json2toml --help 
  [1] json2toml input.json output.toml                  ; json to tmol
  [2] json2toml input.toml output.json                  ; toml to json   
  [3] json2toml --stdin '{"name":"jsonfile"}'         ; stdin:json to stdout:toml
  [4] json2toml --stdin 'name = "jsonfile"' --mode=2    ; 

options:
  -h, --help            show this help message and exit
  -v, --version         show versions
  -i, --stdin           stdin::text
  -d, --dry_run         debug only, 不运行，只打印调试参数
  --force_redo          force overwrite
  --indent INDENT       output json/toml file
  --mode MODE           0-auto; 1-json2toml; 2-toml2json;
  --input_file INPUT_FILE
                        input json/toml file
  --output_file OUTPUT_FILE
                        output json/toml file

```
