argparse subparser monolithic help output
My argparse has only 3 flags (store_true) on the top level, everything else is handled through subparsers. When I run myprog.py --help , the output shows a list of all subcommands like normal, {sub1, sub2, sub3, sub4, ...} . So, the default is working great... I usually can't remember the exact subcommand name I need, and all of its options. So I end up doing 2 help lookups: myprog.py --help myprog.py sub1 --help I do this so often, I decided to cram this into one step. I would rather have my toplevel help output a huge summary, and then I scroll through the list manually. I find it is much