Skip to content

Easy to use command line interface for python dataclasses

License

Notifications You must be signed in to change notification settings

malte-soe/dataclass-cli

Repository files navigation

Dataclass Command-line Interface

Code style: black image

Installation

From pip:

pip install dc-cli

Usage

from dataclasses import dataclass, fields
import dataclass_cli

@dataclass_cli.add
@dataclass
class Model:
    num_layers: int
    learning_rate: float
    training: bool

model = Model()
print(model)

Output:

❯ python test.py --help
usage: test.py [-h] --model_num_layers MODEL_NUM_LAYERS --model_learning_rate MODEL_LEARNING_RATE (--model_training | --no-model_training)

optional arguments:
  -h, --help            show this help message and exit

model:
  --model_num_layers MODEL_NUM_LAYERS
  --model_learning_rate MODEL_LEARNING_RATE
  --model_training
  --no-model_training
❯ python test.py --model_num_layers 10 --model_learning_rate 0.1 --no-model_training
Model(num_layers=10, learning_rate=0.1, training=False)

License

MIT

About

Easy to use command line interface for python dataclasses

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages