1

Python クリック モジュールの使用を開始したばかりで、クリックでエラーがスローされるたびに「--help」機能を自動的に起動させたいと考えています。

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 としてスクリプトを実行するとします。通常の :Error no Option --no_such_thing の代わりに --help を表示する方法はありますか

4

2 に答える 2