A wrapper around the Click
library for Python. PyCmds makes it easier to use Click's command execution
framework independently of the command line (i.e. executing Click
Commands in an existing Python instance.)
To accompany this, PyCmds adds a CmdCompleter class which implements the
Completer interface from the
python-prompt-toolkit.
Using this class, one may create a python-prompt-toolkit interface with
intelligent (see below) autocompletion for Click Commands and Options.
Also, PyCmds adds an AliasGroup class to allow the assignment of aliases
to Click Commands.
- Only displays completion menu when the completer is certain of what options or subcommands are valid. (E.g. no naive option or subcommand suggestions when Click is expecting a value for a previous option.)
- Considers
click.Option.is_flagandclick.Parameter.nargsto decide how many values a option should consume. - Considers
click.Option.countandclick.Option.multipleto decide if more than one instance of the same option should be permitted. - Smart autocompletion for grouped short flags with or without a value clustered on the end.
- Designed primarily for POSIX-style options.
- Only context settings specified on the root/top-level
Commandwill be considered (by necessity). - Incompatible with
click.Context.allow_interspersed_args. - Incompatible with
click.Context.ignore_unknown_opts. - Incompatible with
click.MultiCommand.chain. - The split character for parameters with nargs > 1 is expected to be a space.