Is it possible to combine the functionality of argparse.ArgumentDefaultsHelpFormatter
with argparse.MetavarTypeHelpFormatter
?
There are examples on how to use any one of these in the docs, but it's not clear how one would create help text that combines the best of both?
For example, I would like something like the following:
parser = argparse.ArgumentParser(prog='PROG')
parser.add_argument('--foo', type=int, default=42, help='FOO!')
parser.add_argument('bar', nargs='*', default=[1, 2, 3], help='BAR!')
to produce something like the following:
usage: PROG [-h] [--foo int] [float [float ...]]
positional arguments:
float BAR! (default: [1, 2, 3])
optional arguments:
-h, --help show this help message and exit
--foo int FOO! (default: 42)
In theory you can define a new formatter class that is a subclass of both of the other classes. (I could find a bug/issue where that is suggested by the developer.) Whether that will work with this pair is needs to be tested or checked in the code. Basically we need to see whether the methods that these 2 classes change are compatible.
produces
Note that I had to specify a
type
for the positional as well. Without that I got an error:With this requirement, I suspect the
MetavarTypeHelpFormatter
does not get much use. The default 'string' type (None) will produce an error. This is a convenience formatter class, and likely to create more problems than it solves.The
defaults
help formatter just adds a ' (default: %(default)s)' string to the help string. You can do that yourself. So it is just a convenience class, not something that anyone requires.The alternative to subclassing these 2 classes, is to subclass their parent, and include all the methods that the 2 subclasses change.
adding:
displays
Using just
produces