simdb.cli.commands.simulation module

class simdb.cli.commands.simulation.NameValueOption(param_decls: Sequence[str] | None = None, show_default: bool | str | None = None, prompt: bool | str = False, confirmation_prompt: bool | str = False, prompt_required: bool = True, hide_input: bool = False, is_flag: bool | None = None, flag_value: Any | None = None, multiple: bool = False, count: bool = False, allow_from_autoenv: bool = True, type: ParamType | Any | None = None, help: str | None = None, hidden: bool = False, show_choices: bool = True, show_envvar: bool = False, **attrs: Any)[source]

Bases: Option

type_cast_value(ctx: Context, value: Any) Any[source]

Convert and validate a value against the option’s type, multiple, and nargs.

simdb.cli.commands.simulation.n_required_args_adaptor(n) Type[Command][source]