The Run Sub-Command Arguments

"""`run` sub-command

Usage: ape run -h
       ape run [<configuration>...]

Positional Arguments:

    <configuration>   0 or more configuration-file names [default: ape.ini]


Options;

    -h, --help  This help message.

"""

See the developer documentation for more information about this section.

The RunArguments Constants

class RunArgumentsConstants(object):
    """
    Constants for the Run Arguments
    """
    __slots__ = ()
    configfiles = '<configuration>'

    # defaults
    default_configfiles = ['ape.ini']
# RunArgumentsConstants

The RunArguments Class

BaseArguments <|-- RunArguments

RunArguments
RunArguments.configfiles
RunArguments.reset

The Run Strategy

This is the strategy for the run sub-command than runs the APE.

BaseStrategy <|-- RunStrategy

RunStrategy