I have been using argparse
for command line parsing, but it wasn’t until recently that I discovered it can be used to create subcommands.
General Argument Parsing
General argument parsing is quite simple. You just instantiate an argparse
, and then call the object’s add argument method.
1 | import argparse |
Subcommand Creation
Subcommands need to first create a subparser object based on the main argument parser (above is parser
), and then call this object’s method to add subcommands.
1 | sub_parser = parser.add_subparsers(title='sub-commands', |
This way, you can define subprograms under the main program. argparse
also provides a method to specify a function to run when a specific subcommand is called. This function will receive all parameter values under the subcommand as a namespace and can start executing the subprogram after parsing the parameters.
1 | sub_parser_a.set_defaults(func=subFun) |
Other
argparse
can also implement multiple subprograms and inherit main program parameters for subprograms. This has not been used yet, so I will update it later.