Jaymon / captain

command line python scripts for humans
MIT License
13 stars 1 forks source link

Command line grouping #87

Open Jaymon opened 2 months ago

Jaymon commented 2 months ago

Would it be cool to be able to do something like this:

$ --foo.bar=1 --foo.che=2

And have foo be passed to the handle method like:

foo = {
    "bar": 1,
    "che": 2
}