如何将 argparse 配置为类似于评论中心的 cli

How to configure argparse to be like a comment central kind of cli

我想做这样的事情:

my-cli.py todo1 --todo1-option1 --todo1-option2 ...


my-cli.py todo2 --todo2-option1 --todo2-option2 ...

此外,如果命令是 todo1,我希望声明 --todo1-option1 是必需的,如果我为不同的命令(即 todo2)指定参数,则它是无效参数

我还希望为不同的命令(即 todo1 或 todo2)设置不同的 -h。

对不起,如果我的英语有点烂。我希望你明白我的意思。

根据我对一些教程的理解,主要的 python 应用程序是动作本身,例如:

cp -f file1 file2

起初我认为使用 add_mutually_exclusive_group 有一些巧妙的技巧,但我的问题的答案实际上是 subparsers

import argparse

parser = argparse.ArgumentParser()

subparsers = parser.add_subparsers(help='commands')

# A todo1 command
todo1_parser = subparsers.add_parser(
    'todo1', help='List contents')
todo1_parser.add_argument(
    '--todo1-option1', action='store', required=True,
    help='Todo1 Option 1')
todo1_parser.add_argument(
    '--todo1-option2', action='store',
    help='Todo1 Option 2')


# A todo2 command
todo2_parser = subparsers.add_parser(
    'todo2', help='List contents')
todo2_parser.add_argument(
    '--todo2-option1', action='store', required=True,
    help='Todo2 Option 1')
todo2_parser.add_argument(
    '--todo2-option2', action='store',
    help='Todo2 Option 2')

print(parser.parse_args())

测试命令列表:

     $ python test_argparse.py 

     python test_argparse.py usage: test_argparse.py [-h] {todo1,todo2} ...
     test_argparse.py: error: too few arguments

测试 Todo1 所需参数:

     $ python test_argparse.py todo1 

     usage: test_argparse.py todo1 [-h] --todo1-option1 TODO1_OPTION1 [--todo1-option2 TODO1_OPTION2]
     test_argparse.py todo1: error: the following arguments are required: --todo1-option1

测试 Todo1 所需参数:

     $python test_argparse.py todo2
     
     usage: test_argparse.py todo2 [-h] --todo2-option1 TODO2_OPTION1 [--todo2-option2 TODO2_OPTION2]
     test_argparse.py todo2: error: the following arguments are required: --todo2-option1

Todo2 的测试不应该对 Todo1 可用:

     $python test_argparse.py todo1 --todo2-option1 aaa 
     usage: test_argparse.py [-h] {todo1,todo2} ... test_argparse.py: error:
     unrecognized arguments: --todo2-option1 aaa