3

我第一次在 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

我想知道出了什么问题,这样我才能真正让定义的函数运行。

4

1 回答 1

10

这个答案的功劳属于上面的 JF Sebastian;我只是想确保我结束了这个问题。

Usage:文档字符串的和Options:部分之间需要有一个空行,否则docopt会给你像我上面的问题一样的结果。文档中提到了此要求,但可能很难理解(强调我的):

使用模式格式

使用模式是一个以(不区分大小写doc开头并以明显空行结尾的子字符串。usage:

于 2015-08-09T17:13:05.047 回答