Utils
sereto.cli.utils
¶
AliasedGroup
¶
Bases: Group
A click Group subclass that allows for writing aliases and prefixes of any command.
Source code in sereto/cli/utils.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
get_command(ctx, cmd_name)
¶
Retrieves the command with the given name.
If the command is not found, it looks up an explicit command alias or a command prefix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ctx
|
Context
|
The click context object. |
required |
cmd_name
|
str
|
The name of the command to retrieve. |
required |
Returns:
| Type | Description |
|---|---|
Command | None
|
The command with the given name, or None if no command is found. |
Source code in sereto/cli/utils.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | |
resolve_command(ctx, args)
¶
Resolves the full command's name.
Source code in sereto/cli/utils.py
76 77 78 79 80 81 82 83 | |
Console
¶
Bases: Console
Singleton wrapper around Rich's Console.
Source code in sereto/cli/utils.py
97 98 | |
guard_ni_only_options(click_ctx, non_interactive, ni_only)
¶
Validate that NI-only options are not provided without -N/--non-interactive.
Raises an error when any option that only applies in non-interactive mode is explicitly passed on the command line without the -N/--non-interactive flag.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
click_ctx
|
Context
|
The current Click context (from |
required |
non_interactive
|
bool
|
Value of the -N/--non-interactive flag. |
required |
ni_only
|
dict[str, str]
|
Mapping of Python parameter name → CLI flag name for options that only apply in non-interactive mode. |
required |
Source code in sereto/cli/utils.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | |
load_enum(enum, message)
¶
Let user select a value from enum.
Source code in sereto/cli/utils.py
86 87 88 89 90 91 92 93 94 | |