I want to recreate [-A [-b value]] where in command would look like this:
test.py -A -b 123
Seems really simple but I can't get it right. My latest attempt has been:
byte = subparser.add_parser("-A")
byte.add_argument("-b", type=int)
I want to recreate [-A [-b value]] where in command would look like this:
test.py -A -b 123
Seems really simple but I can't get it right. My latest attempt has been:
byte = subparser.add_parser("-A")
byte.add_argument("-b", type=int)
Copyright © 2021 Jogjafile Inc.
While the
add_parser
command accepts '-A', the parser cannot use it. Look at the help:A subparser is really a special kind of
positional
argument. To the main parser, you have effectively definedBut to the parsing code, '-A' looks like an
optional's
flag, as though you had definedThe error:
means that it has skipped over the
-A
and-b
(which aren't defined for the main parser), and tried to parse '123' as the first positional. But it isn't in the list of valid choices.So to use subparsers, you need specify 'A' as the subparser, not '-A'.