cli¶
Setup parser and cli command redirects
Functions
cli ([argv]) |
The main cli entry point. |
configure_subcommand (subparsers) |
Setup the configure command. |
execute_subcommand (subparsers) |
Setup the execute command. |
info_subcommand (subparsers) |
Setup the info command. |
parser_factory () |
Create the cli parser. |
remove_subcommand (subparsers) |
Setup the remove command. |
shortcut_command_group (subparsers) |
Setup the shortcut command group. |
start_subcommand (subparsers) |
Setup the start command. |
version_subcommand (subparsers) |
Setup the version command. |
-
eam.cli.
cli
(argv=None)[source]¶ The main cli entry point.
Parameters: argv (dict, optional) – The list of arguments passed in the command line. Default value is None which will use the sys.argv variable.
-
eam.cli.
configure_subcommand
(subparsers)[source]¶ Setup the
configure
command.Parameters: subparsers – The subparsers group to add the new command to.
-
eam.cli.
execute_subcommand
(subparsers)[source]¶ Setup the
execute
command.Parameters: subparsers – The subparsers group to add the new command to.
-
eam.cli.
info_subcommand
(subparsers)[source]¶ Setup the
info
command.Parameters: subparsers – The subparsers group to add the new command to.
-
eam.cli.
remove_subcommand
(subparsers)[source]¶ Setup the
remove
command.Parameters: subparsers – The subparsers group to add the new command to.
-
eam.cli.
shortcut_command_group
(subparsers)[source]¶ Setup the
shortcut
command group.Parameters: subparsers – The subparsers group to add the new command group to.