我第一次在 Python 3 中使用 docopt。当我运行代码时,输出只显示Usage选项数据,并没有执行模块中的函数。
这是一个例子。我在一个文件中有这个代码。
"""Usage: scratch.py [-h] [--boston | --sandiego] [--prostitution |
--drugs] [--lim VALUE]
Options:
-h --help :Show help information
--boston : work on boston addresses
--sandiego : work on san diego addresses
--prostitution : prostitution incidents
--drugs : drug sale incidents
--lim : number of addresses to work with
"""
from docopt import docopt
def scratch(args):
print(args['--boston'])
print('hello')
if __name__ == '__main__':
arg = docopt(__doc__, help=False)
print(arg)
scratch(arg)
当我使用各种选项运行此文件时,我得到的只是文档字符串的副本。我应该看到docopt 从文档字符串参数创建的字典的副本。然后我还应该看到函数调用的打印结果。但除了文档字符串,我什么也没看到。
因此,如果我进行如下命令行调用:
python scratch.py --boston --drugs --lim 100
返回的所有内容如下。
Usage: scratch.py <city> [--boston | --sandiego] <crime> [--prostitution |
--drugs] --count=N
Options:
city : city to geocode
--boston : work on boston addresses
--sandiego : work on san diego addresses
crime : crime to select on
--prostitution : prostitution incidents
--drugs : drug sale incidents
-count : number of addresses to work with
我想知道出了什么问题,这样我才能真正让定义的函数运行。