Get selected subcommand with argparse Get selected subcommand with argparse python python

Get selected subcommand with argparse


The very bottom of the Python docs on argparse sub-commands explains how to do this:

>>> parser = argparse.ArgumentParser()>>> parser.add_argument('-g', '--global')>>> subparsers = parser.add_subparsers(dest="subparser_name") # this line changed>>> foo_parser = subparsers.add_parser('foo')>>> foo_parser.add_argument('-c', '--count')>>> bar_parser = subparsers.add_parser('bar')>>> args = parser.parse_args(['-g', 'xyz', 'foo', '--count', '42'])>>> argsNamespace(count='42', global='xyz', subparser_name='foo')

You can also use the set_defaults() method referenced just above the example I found.


ArgumentParser.add_subparsers has dest formal argument described as:

dest - name of the attribute under which sub-command name will be stored; by default None and no value is stored

In the example below of a simple task function layout using subparsers, the selected subparser is in parser.parse_args().subparser.

import argparsedef task_a(alpha):    print('task a', alpha)def task_b(beta, gamma):    print('task b', beta, gamma)if __name__ == '__main__':    parser = argparse.ArgumentParser()    subparsers = parser.add_subparsers(dest='subparser')    parser_a = subparsers.add_parser('task_a')    parser_a.add_argument(        '-a', '--alpha', dest='alpha', help='Alpha description')    parser_b = subparsers.add_parser('task_b')    parser_b.add_argument(        '-b', '--beta', dest='beta', help='Beta description')    parser_b.add_argument(        '-g', '--gamma', dest='gamma', default=42, help='Gamma description')    kwargs = vars(parser.parse_args())    globals()[kwargs.pop('subparser')](**kwargs)


Just wanted to post this answer as this came in very handy in some of my recent work. This method makes use of decorators (although not used with conventional @ syntax) and comes in especially handy if the recommended set_defaults is already being used with subparsers.

import argparsefrom functools import wrapsimport sysdef foo(subparser):    subparser.error('err')def bar(subparser):    subparser.error('err')def map_subparser_to_func(func, subparser):    @wraps(func)    def wrapper(*args, **kwargs):        return func(subparser, *args, **kwargs)    return wrapperparser = argparse.ArgumentParser()subparsers = parser.add_subparsers()foo_parser = subparsers.add_parser('foo')foo_parser.set_defaults(func = map_subparser_to_func(foo, foo_parser))bar_parser = subparsers.add_parser('bar')bar_parser.set_defaults(func = map_subparser_to_func(bar, foo_parser))args = parser.parse_args(sys.argv[1:])args.func()

The map_subparser_to_func function can be modified to set the subparser to some class attribute or global variable inside of the wrapper function instead of passing it directly and can also be reworked to a conventional decorator for the functions, although that would require adding another layer.

This way there is a direct reference to the object.