The List Sub-Command Arguments

"""list subcommand

usage: ape list -h
       ape list [<module> ...]

Positional Arguments:
  <module> ...  Space-separated list of importable module with plugins

optional arguments:

  -h, --help                 Show this help message and exit

"""

See the developer documentation for more information.

The ListArguments Constants

class ListArgumentsConstants(object):
    """
    Constants for the list sub-command arguments
    """
    __slots__ = ()
    # arguments
    modules = "<module>"

The List Class

BaseArguments <|-- List

List
List.modules
List.reset
List.function

The List Strategy

BaseStrategy <|-- ListStrategy

ListStrategy
ListStrategy.function