confit.cli
Cli [source]
Command line application for Confit commands that:
- validates a command parameters before executing it
- accepts a configuration file describing the parameters
- automatically instantiates parameters given a dictionary when type hinted
Source code in confit/cli.py
76 77 | |
parse_overrides [source]
Parse the overrides from the command line into a dictionary of key value pairs.
Parameters
| PARAMETER | DESCRIPTION |
|---|---|
args | The arguments to parse TYPE: |
| RETURNS | DESCRIPTION |
|---|---|
Dict[str, Any] | The parsed overrides as a dictionary |
Source code in confit/cli.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | |