add_mutually_exclusive_group
ไม่ได้ทำให้ทั้งกลุ่มมีเอกสิทธิ์ร่วมกัน ทำให้ตัวเลือกภายในกลุ่มไม่ซ้ำกัน
สิ่งที่คุณกำลังมองหาsubcommands แทนที่จะเป็น prog [-a xxxx | [-b yyy -c zzz]] คุณมี:
prog
command 1
-a: ...
command 2
-b: ...
-c: ...
ในการเรียกใช้อาร์กิวเมนต์ชุดแรก:
prog command_1 -a xxxx
ในการเรียกใช้อาร์กิวเมนต์ชุดที่สอง:
prog command_2 -b yyyy -c zzzz
คุณยังสามารถตั้งค่าอาร์กิวเมนต์คำสั่งย่อยเป็นตำแหน่ง
prog command_1 xxxx
ประเภทของ git หรือ svn:
git commit -am
git merge develop
ตัวอย่างการทำงาน
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')
parser_a = subparsers.add_parser('command_1', help='command_1 help')
parser_a.add_argument('a', type=str, help='help for bar, positional')
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(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
โชคดี.