私はこのコードの塊を持っています:
import click
@click.option('--delete_thing', help="Delete some things columns.", default=False)
def cmd_do_this(delete_thing=False):
print "I deleted the thing."
のオプション変数の名前を変更したいと思います--delete-thing
。しかし、Python では変数名にダッシュを使用できません。この種のコードを記述する方法はありますか?
import click
@click.option('--delete-thing', help="Delete some things columns.", default=False, store_variable=delete_thing)
def cmd_do_this(delete_thing=False):
print "I deleted the thing."
したがってdelete_thing
、の値に設定されますdelete-thing