blob: 651c8e754a3926b1ea9aa53febff86a8a8c18ca8 (
plain)
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
47
48
49
50
51
52
|
#!/usr/bin/env python
from argparse import (
ArgumentParser,
)
from enum import (
Enum,
)
from sys import (
argv,
exit,
)
class Action(Enum):
"""An action to perform."""
NITROCLI = "nitrocli"
MODEL = "model"
VERBOSITY = "verbosity"
@classmethod
def all(cls):
"""Return the list of all the enum members' values."""
return [x.value for x in cls.__members__.values()]
def main(args):
"""The extension's main function."""
parser = ArgumentParser()
parser.add_argument(choices=Action.all(), dest="what")
parser.add_argument("--nitrocli", action="store", default=None)
parser.add_argument("--model", action="store", default=None)
# We deliberately store the argument to this option as a string
# because we can differentiate between None and a valid value, in
# order to verify that it really is supplied.
parser.add_argument("--verbosity", action="store", default=None)
namespace = parser.parse_args(args[1:])
if namespace.what == Action.NITROCLI.value:
print(namespace.nitrocli)
elif namespace.what == Action.MODEL.value:
print(namespace.model)
elif namespace.what == Action.VERBOSITY.value:
print(namespace.verbosity)
else:
return 1
return 0
if __name__ == "__main__":
exit(main(argv))
|