我剛開始使用python click模塊,我希望自動調出'--help'函數,隨時點擊引發錯誤。python點擊返回幫助菜單
test.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上來,而不是正常的 :錯誤沒有選項如果你使用點擊4.0+ --no_such_thing