Python:允许最后指定位置参数,或者在使用argparse时首先在帮助输出中将其写入

时间:2012-04-24 10:33:35

标签: python argparse

此代码

import argparse

parser = argparse.ArgumentParser()

parser.add_argument('target', help='Specifiy who to attack!')

magic = ['fireball', 'heal', 'microwave']
parser.add_argument('-m', '--magic', nargs='*',
                    choices=magic,
                    help=('Magic'))
parsed_arguments = parser.parse_args()

生成此帮助输出

usage: Example.py [-h]
                  [-m [{fireball,heal,microwave} [{fireball,heal,microwave} ...]]]
                  target

positional arguments:
  target                Specifiy who to attack!

optional arguments:
  -h, --help            show this help message and exit
  -m [{fireball,heal,microwave} [{fireball,heal,microwave} ...]], --magic [{fireball,heal,microwave} [{fireball,heal,microwave} ...]]
                        Magic

我认为帮助输出令人困惑,并且看起来应该最后指定目标,但这不起作用:python example.py -m fireball troll给出argument -m/--magic: invalid choice: 'troll'

我意识到语言的语法变得含糊不清,但仍然有可能告诉我,因为troll中句子最后应该存在一个单词(目标)不是-m的参数选项。

问题:

  1. 有没有办法让位置参数最后指定而不会将argparse击败到太多?
  2. 有没有办法让argparse帮助输出表明确实应该首先指定目标?

1 个答案:

答案 0 :(得分:1)

如前所述,POSIX系统上用于表示选项结束的标准方法是将参数和选项分开--

关于第二个问题:您可能需要创建自己的HelpFormatter才能实现此目的,请参阅formatter-class。您可以从默认格式化程序继承并仅覆盖必要的函数以生成使用行。