1. ホーム
  2. python

[解決済み] Python argparse 相互排他的グループ

2022-11-09 16:41:10

質問

必要なものは何ですか?

pro [-a xxx | [-b yyy -c zzz]]

私はこれを試してみましたが、動作しません。誰かが私を助けることができますか?

group= parser.add_argument_group('Model 2')
group_ex = group.add_mutually_exclusive_group()
group_ex.add_argument("-a", type=str, action = "store", default = "", help="test")
group_ex_2 = group_ex.add_argument_group("option 2")
group_ex_2.add_argument("-b", type=str, action = "store", default = "", help="test")
group_ex_2.add_argument("-c", type=str, action = "store", default = "", help="test")

ありがとうございます。

どのように解決するのですか?

add_mutually_exclusive_group は、グループ全体を相互に排他的にするわけではありません。グループ内の選択肢を相互に排他的にするのです。

あなたが探しているものは サブコマンド . prog [ -a xxxx | [-b yyy -c zzz]] の代わりに、あなたは持っているでしょう。

prog 
  command 1 
    -a: ...
  command 2
    -b: ...
    -c: ...

最初の引数のセットで起動すること。

prog command_1 -a xxxx

2番目の引数セットで起動する。

prog command_2 -b yyyy -c zzzz

サブコマンドの引数を位置指定にすることもできます。

prog command_1 xxxx

gitやsvnのようなものです。

git commit -am
git merge develop

動作例

# create the top-level parser
parser = argparse.ArgumentParser(prog='PROG')
parser.add_argument('--foo', action='store_true', help='help for foo arg.')
subparsers = parser.add_subparsers(help='help for subcommand', dest="subcommand")

# create the parser for the "command_1" command
parser_a = subparsers.add_parser('command_1', help='command_1 help')
parser_a.add_argument('a', type=str, help='help for bar, positional')

# create the parser for the "command_2" command
parser_b = subparsers.add_parser('command_2', help='help for command_2')
parser_b.add_argument('-b', type=str, help='help for b')
parser_b.add_argument('-c', type=str, action='store', default='', help='test')

テストする

>>> parser.print_help()
usage: PROG [-h] [--foo] {command_1,command_2} ...

positional arguments:
  {command_1,command_2}
                        help for subcommand
    command_1           command_1 help
    command_2           help for command_2

optional arguments:
  -h, --help            show this help message and exit
  --foo                 help for foo arg.
>>>

>>> parser.parse_args(['command_1', 'working'])
Namespace(subcommand='command_1', a='working', foo=False)
>>> parser.parse_args(['command_1', 'wellness', '-b x'])
usage: PROG [-h] [--foo] {command_1,command_2} ...
PROG: error: unrecognized arguments: -b x

がんばってください。