私は Python (2.7) の argparse 機能を使用しており、生成されるヘルプをオプションでアルファベット順に自動的に並べ替えたいと考えています。
デフォルトでは、次のように、ヘルプ エントリは追加された順に並べ替えられます*。
p = argparse.ArgumentParser(description='Load duration curves and other plots')
p.add_argument('--first', '-f', type=int, default=1, help='First Hour')
p.add_argument('--dur', '-d', type=int, default=-1, help='Duration in Hours. Use -1 for all')
p.add_argument('--title', '-t', help='Plot Title (for all plots), default=file name')
p.add_argument('--interp', '-i', action="store_true", default=True,
help='Use linear interpolation for smoother curves')
...
args = p.parse_args()
as を呼び出すと、次のものpython script -h
が生成されます。
usage: script.py [-h] [--first FIRST] [--dur DUR] [--title TITLE] [--interp]
Load duration curves and other plots
optional arguments:
-h, --help show this help message and exit
--first FIRST, -f FIRST
First Hour
--dur DUR, -d DUR Duration in Hours. Use -1 for all
--title TITLE, -t TITLE
Plot Title (for all plots), default=file name
--interp, -i Use linear interpolation for smoother curves
代わりにアルファベット順に自動的にソートすることは可能ですか? dur、first、h、interp、title のようになります。
*明らかに、回避策は p.add_argument を使用してアルファベット順にエントリを追加することで手動で維持することですが、私はそうしないようにしています。