#config-file #convert #json #style #gnu #json-file #string

app config2args

A CLI tool which converts config file into GNU option style string

3 unstable releases

Uses old Rust 2015

0.2.0 Mar 22, 2019
0.1.1 Mar 5, 2019
0.1.0 Feb 28, 2019

#38 in #gnu

MIT license

12KB
176 lines

crate-name at crates.io Build Status

About this repository

This is a CLI tool which converts config file (JSON is only supported for now) into GNU option style string

Example

$ cat test.json
{
    "key1": 1,
    "key2": "hello",
    "key3": [2,3,4],
    "key4": 1.4,
    "key5": null,
    "a": "b"
}
$ config2args test.json
--key1 1 --key2 hello --key3 2 3 4 --key4 1.4 --key5 -a b

How to install

cargo >= 1.32.0 is required. Using rustup is a good way to install rust build tools.

$ cargo install config2args

How to build locally

cargo >= 1.32.0 is required. Using rustup is a good way to install rust build tools.

$ git clone git@github.com:serihiro/config2args.git
$ cd config2args
$ cargo build --release

Features

Supports JSON file as a config file

  • YAML may be supported in the future ?

Supports both of long key name (with --) and short key name (with -)

$ cat test.json
{
    "k": 1,
    "key": "hello"
}
$ config2args test.json
-k 1 --key hello

Supports string (which includes numeric) and array

$ cat test.json
{
    "key1": "a",
    "key2": 1,
    "key3": 1.4,
    "key4": ["a", "b", "c"],
    "key5": [1, 1.4, "c"]
}
$ config2args test.json
--key1 a --key2 1 --key3 1.4 --key4 a b c --key5 1 1.4 c

Supports ignoring key name

$ cat test.json
{
    "_key1": "a",
    "_key2": "b",
    "key3": "c"
}
$ config2args test.json
a b --key3 c

Supports not only JSON object, like "aaaa", [1, 2, 3].

$ cat test.json
"abcd"
$ config2args test.json
abcd
$ cat test.json
[1,2,3]
$ config2args test.json
1 2 3

Supports netsted object

$ cat test.json
{
    "key1": 1,
    "key2": 2,
    "key3": 3,
    "key4": {
        "k1" : 4,
        "k2" : 5,
        "a": 6
    },
    "z": {
        "key5": 7,
        "b": 8
    }
}
$ config2args test.json
--key1 1 --key2 2 --key3 3 --key4.k1 4 --key4.k2 5 --key4.a 6 --z.key5 7 --z.b 8

Supports tera template engine

If the file name of the input file ends with .tera, the file is evalued as a tera template.

$ cat test.json.tera
{
    "_setup_variable_for_tera": "{% set my_var = now() | date(format=\"%Y%m%d%H%M%S\") %}",
    "output": "logs/{{my_var}}"
}
$ config2args test.json.tera
--output logs/20190323005419

Motivation

In many cases, machine learning scripts are implemented with many CLI options.
For example, I often execute a python script like this:

$ python train_imagenet.py \
  "$imagenet1k_base/train.ssv" \
  "$imagenet1k_base/val.ssv" \
  --root "$imagenet1k_base" \
  --mean "$imagenet1k_base/mean.npy" \
  --gpu 0 \
  --arch resnet50 \
  --batchsize "$batch_size" \
  --val_batchsize "$batch_size" \
  --epoch "$epoch" \
  --loaderjob 2 \
  --out "$output_path"

Of course, this is written in one shell script. But this style is not easy to read and update :(

So I wanted to manage these options with more comfortable format, like JSON or YAML.

$ python train_imagenet.py `config2args config.json`

LICENSE

MIT

Dependencies

~15MB
~307K SLoC