-
-
Notifications
You must be signed in to change notification settings - Fork 562
/
Copy path_cli_parsing.py
46 lines (34 loc) · 1.4 KB
/
_cli_parsing.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""Argument parser initialization logic.
This defines helpers for setting up both the root parser and the parsers
of all the sub-commands.
"""
from argparse import ArgumentParser
from ._cli_subcommands import SUBCOMMAND_MODULES
def attach_subcommand_parsers_to(root_cli_parser: ArgumentParser, /) -> None:
"""Connect all sub-command parsers to the given one.
This functions iterates over a mapping of subcommands to their
respective population functions, executing them to augment the
main parser.
"""
subcommand_parsers = root_cli_parser.add_subparsers(
dest='check_name',
help='A check to be performed.',
required=True,
)
for subcommand_module in SUBCOMMAND_MODULES:
subcommand_parser = subcommand_parsers.add_parser(
subcommand_module.CLI_SUBCOMMAND_NAME,
)
subcommand_parser.set_defaults(
invoke_cli_app=subcommand_module.invoke_cli_app,
)
subcommand_module.populate_argument_parser(subcommand_parser)
def initialize_argument_parser() -> ArgumentParser:
"""Return the root argument parser with sub-commands.
Returns:
ArgumentParser: The root parser with sub-commands attached.
"""
root_cli_parser = ArgumentParser(prog=f'python -m {__package__ !s}')
attach_subcommand_parsers_to(root_cli_parser)
return root_cli_parser
__all__ = ('initialize_argument_parser',)