我使用docopt
来解析python中的命令行输入。我有docstring:
"""
Usage:
docoptTest.py [options]
Options:
-h --help show this help message and exit
-n --name <name> The name of the specified person
"""
然后导入docopt并解析参数并打印它们:
from docopt import docopt
args = docopt(__doc__)
print(args)
>>> python docoptTest.py -n asdf
{'--help': False,
'--name': 'asdf'}
我尝试使用省略号来允许输入多个名称:
-n --name <name>... The name of the specified person
但是我得到了一个使用错误。然后我在初始用法消息中添加省略号:
"""
Usage:
docoptTest.py [-n | --name <name>...] [options]
Options:
-h --help show this help message and exit
-n --name The name of the specified person
"""
但是输出认为--name
是一个标志。
>>> python docoptTest.py -n asdf asdf
{'--help': False,
'--name': True,
'<name>': ['asdf', 'asdf']}
如何解决这个问题?
这个符号:
>>> python docoptTest.py -n asdf asdf
可能不能与docopt一起工作,因为每个选项只有一个参数。如果你想这样做,那么你可以使用某种分隔符,比如逗号,然后自己拆分它。如果您添加一个参数,那么解析器将无法区分最后一个asdf
作为选项或参数的一部分。有些人还在选项和它的参数之间加上一个=
。
也许你可以试试这个:
Usage:
docoptTest.py [-n|--name <name>]... [options]
Options:
-h --help show this help message and exit
-n --name <name> The name of the specified person
这是做类似事情的一种很常见的方法。docopt字典看起来像这样:
$python docoptTest.py -n asdf -n ads
{'--help': False,
'--name': ['asdf', 'ads']}
$python docoptTest.py --name asdf --name ads
{'--help': False,
'--name': ['asdf', 'ads']}