我希望命令行参数采用数组格式。
即
myprogram.py -a 1,2,4,5
当使用docopt
解析参数时,我希望看到:
{'a' = [1,2,4,5]} # the length of this array could be as long as user may like.
我不知道这是否可能。如果没有,我能做的最好的调整是什么?
您不会让docopt
执行此操作,因为逗号分隔的列表只是一个可选参数。但之后你可以很容易地自己完成:
"""
Example of program with many options using docopt.
Usage:
myprogram.py -a NUMBERS
Options:
-h --help show this help message and exit
-a NUMBERS Comma separated list of numbers
"""
from docopt import docopt
if __name__ == '__main__':
args = docopt(__doc__, version='1.0.0rc2')
args['-a'] = [int(x) for x in args['-a'].split(',')]
print(args)
正确的答案是使用省略号...
从文档
(省略号)一个或多个元素。要指定可以接受任意数量的重复元素,请使用省略号(…),例如
my_program.py FILE ...
表示接受一个或多个FILE-s。如果要接受零个或多个元素,请使用括号,例如:my_program.py [FILE ...]
。Ellipsis在左边的表达式上充当一元运算符。
使用在线解析器,您可以看到输出。
给定的文档
Naval Fate.
Usage:
naval_fate.py ship new <name>...
naval_fate.py -h | --help
naval_fate.py --version
Options:
-h --help Show this screen.
--version Show version.
ship new 1 2 3 4
的输入将为您提供以下解析信息
{
"--help": false,
"--version": false,
"<name>": [
"1",
"2",
"3",
"4"
],
"new": true,
"ship": true
}