Ponderosa extends the Python standard library's argparse in an effort to make dealing with deeply nested subcommand trees less ponderous.
I've tried out many different command line parsing libraries over the years, but none of them have quite scratched the itch for this use case.
Ponderosa gets rid of those giant blocks of add_subparsers
nastiness without entirely reinventing the wheel at the lower level of parsing the arguments themselves.
ponderosa is primarily interacted with via the CmdTree
class.
This class keeps track of the parser tree, adds subparsers when needed, exposes methods for finding parsers and traversing the subcommand tree, and provides some convenience functions for printing out the subcommand tree in an orderly way.
To convert a function into a subcommand, we use the CmdTree.register
decorator with the fully qualified subcommand name.
The returned object can then register its arguments with its .args
decorator.
from argparse import Namespace
from ponderosa import ArgParser, CmdTree
# ArgParser is just Union[argparse.ArgumentParser, argparse._ArgumentGroup]
commands = CmdTree(description='Ponderosa Basics')
@commands.register('basics', help='Easy as pie 🥧')
def basics_cmd(args: Namespace):
print('Ponderosa 🌲')
if args.show:
commands.print_help()
@basics_cmd.args()
def _(parser: ArgParser):
parser.add_argument('--show', action='store_true', default=False)
@commands.register('basics', 'deeply', 'nested', help='A deeply nested command')
def deeply_nested_cmd(args: Namespace):
print(f'Deeply nested command! Args: {args}')
@commands.register('basics', 'deeply', 'also-nested', help='Another deeply nested command')
def deeply_nested_cmd(args: Namespace):
print(f'Another deeply nested command! Args: {args}')
@deeply_nested_cmd.args()
def _(parser: ArgParser):
parser.add_argument('--deep', action='store_true', default=False)
if __name__ == '__main__':
commands.run()
$ python examples/basics.py basics --show
Ponderosa 🌲
usage: basics.py [-h] {basics} ...
Subcommands:
basics: Easy as pie 🥧
deeply:
nested: A deeply nested command
also-nested: Another deeply nested command
$ python examples/basics.py basics deeply nested -h
usage: basics.py basics deeply nested [-h] [--deep]
options:
-h, --help show this help message and exit
--deep
The register
decorator takes care of the boilerplate of adding intermediate subparsers to your subcommand tree.
Given a fully qualified subcommand string, for example grandparent parent child
, the CmdTree
will search for the first subparser matching the root name (in this case, grandparent
), and then find all the intermediary subparsers; any intermediaries that do not yet exist will be instantiated, including the root subparser if necessary.
>>> from argparse import Namespace
>>> from ponderosa import CmdTree
>>>
>>> commands = CmdTree()
>>>
>>> @commands.register('grandparent', 'parent', 'child')
... def _(args: Namespace):
... print('Hello from child!')
...
>>> commands.run(['grandparent', 'parent', 'child'])
Hello from child!
0
All arguments passed to register
after the subcommand string are forwarded on to add_parser
:
@commands.register('subcomand',
help='A useful subcommand',
aliases=['sub'],
description='A long description of the subcommand...')
def _(args):
pass
Sometimes you want to add some postprocessing to your arguments that can only be done after parsing has already occurred - for example, validating one of your arguments might depend on opening a database connection. You can register postprocessors on your argument groups to handle this:
#!/usr/bin/env python3
from argparse import Namespace
from ponderosa import arggroup, ArgParser, CmdTree
commands = CmdTree()
@arggroup('Foobar')
def foobar_args(group: ArgParser):
group.add_argument('--foo', type=str)
group.add_argument('--bar', type=int)
@foobar_args.apply()
@commands.register('foobar')
def foobar_cmd(args: Namespace) -> int:
print(f'Handling subcommand with args: {args}')
return 0
@foobar_args.postprocessor()
def foobar_postprocessor(args: Namespace):
print(f'Postprocessing args: {args}')
if __name__ == '__main__':
commands.run()
Running the example gives, roughly:
$ python examples/postprocessor.py foobar --bar 1 --foo bar
Postprocessing args: Namespace(func=<function foobar_cmd at 0x7bc1ba0b1800>, foo='bar', bar=1)
Handling subcommand with args: Namespace(func=<function foobar_cmd at 0x7bc1ba0b1800>, foo='bar', bar=1)
We can of course register multiple postprocessors, and do so on the result of a SubCmd.args
.
By default, the postprocessors will be executed in the order they are registered:
#!/usr/bin/env python3
from argparse import Namespace
from ponderosa import ArgParser, CmdTree
commands = CmdTree()
@commands.register('foobar')
def foobar_cmd(args: Namespace) -> int:
print(f'Handling subcommand with args: {args}')
return 0
@foobar_cmd.args()
def foobar_args(group: ArgParser):
group.add_argument('--foo', type=str)
group.add_argument('--bar', type=int)
@foobar_args.postprocessor()
def _(args: Namespace):
print(f'First postprocessor: {args}')
args.calculated = args.bar * 2
@foobar_args.postprocessor()
def _(args: Namespace):
print(f'Second postprocessor: {args}')
if __name__ == '__main__':
commands.run()
Which gives:
$ python examples/multi_postprocessor.py foobar --foo bar --bar 1
SubCmd.args.wrapper: foobar
First postprocessor: Namespace(func=<function foobar_cmd at 0x751415cb1a80>, foo='bar', bar=1)
Second postprocessor: Namespace(func=<function foobar_cmd at 0x751415cb1a80>, foo='bar', bar=1, calculated=2)
Handling subcommand with args: Namespace(func=<function foobar_cmd at 0x751415cb1a80>, foo='bar', bar=1, calculated=2)
You can also provide a priority to your postprocessors if registration order is insufficient:
#!/usr/bin/env python3
from argparse import Namespace
from ponderosa import ArgParser, CmdTree
commands = CmdTree()
@commands.register('foobar')
def foobar_cmd(args: Namespace) -> int:
print(f'Handling subcommand with args: {args}')
return 0
@foobar_cmd.args()
def foobar_args(group: ArgParser):
group.add_argument('--foo', type=str)
group.add_argument('--bar', type=int)
@foobar_args.postprocessor()
def _(args: Namespace):
print(f'Low priority: {args}')
# Usually, this function would run second, as it was defined second.
# It will run first due to its priority score.
@foobar_args.postprocessor(priority=100)
def _(args: Namespace):
print(f'High priority: {args}')
args.calculated = args.bar * 2
if __name__ == '__main__':
commands.run()
This time, we get:
$ python examples/priority_postprocessors.py foobar --bar 2
High priority: Namespace(func=<function foobar_cmd at 0x7693e57b5bc0>, foo=None, bar=2)
Low priority: Namespace(func=<function foobar_cmd at 0x7693e57b5bc0>, foo=None, bar=2, calculated=4)
Handling subcommand with args: Namespace(func=<function foobar_cmd at 0x7693e57b5bc0>, foo=None, bar=2, calculated=4)