OPTPARSE ライブラリ リファレンスから:
option_list = [
make_option("-f", "--filename",
action="store", type="string", dest="filename"),
make_option("-q", "--quiet",
action="store_false", dest="verbose"),
]
parser = OptionParser(option_list=option_list)
上記の例のように、make_option を使用してオプション リストを作成し、パーサーをインスタンス化して引数を追加するデコレータに渡します。
これはargparseでどのように達成できますか? parse_args() 以外にパーサーを設定する方法はありますか?