我刚开始使用 python click 模块,我想让它在任何时候单击引发错误时自动调出“--help”功能。
测试.py
@click.command()
@click.option('--count', default=1, help='Number of greetings.')
@click.option('--name', default=Adam,
help='The person to great.')
def test(name):
print name
如果我要从命令行作为 test.py --no_such_thing 运行脚本。有没有办法让 --help 出现而不是正常的:Error no Option --no_such_thing