5

For a program with many subcommands, I'd like to show them logically grouped in the --help output. Python argparse has a add_argument_group method, but it doesn't seem compatible with subparsers. subparsers can only be added to the top level ArgumentParser, and _SubParsersAction doesn't allow argument groups. Is there some way around this?

poolie
  • 9,289
  • 1
  • 47
  • 74

1 Answers1

4

You can't really do it in any straightforward way, other than implementing a custom HelpFormatter.

You can find some more information on HelpFormatter flavors in this part of the documentation.

favoretti
  • 29,299
  • 4
  • 48
  • 61