The Fetch Sub-Command Arguments =============================== :: """fetch subcommand usage: ape fetch -h ape fetch [...] [--module ...] positional arguments: List of plugin-names (default=['Ape']) optional arguments: -h, --help Show this help message and exit -m, --module ... Non-ape modules """ These are arguments for the `fetch` sub-command (see the :ref:`developer documentation ` for more information). .. _ape-interface-arguments-fetch-constants: The Fetch Arguments Constants ----------------------------- :: class FetchArgumentsConstants(object): """ Constants for the `fetch` sub-command arguments """ __slots__ = () # arguments and options names = "" modules = '--module' # defaults default_names = ['Ape'] .. _ape-interface-arguments-fetch-arguments: The FetchArguments ------------------ .. uml:: BaseArguments <|-- FetchArguments .. currentmodule:: ape.interface.arguments.fetcharguments .. autosummary:: :toctree: api FetchArguments FetchArguments.names FetchArguments.modules FetchArguments.reset .. _ape-interface-arguments-fetch-strategy: The FetchStrategy ----------------- .. autosummary:: :toctree: api FetchStrategy FetchStrategy.function The `function` method is wrapped by the :ref:`try_except decorator ` so it should never crash.