Use this tag for questions related to a subparser, an entity that supports the creation of sub-commands.
Many programs split up their functionality into a number of sub-commands, for example, the svn
program can invoke sub-commands like svn checkout
, svn update
, and svn commit
. Splitting up functionality this way can be a particularly good idea when a program performs several different functions which require different kinds of command-line arguments. subparsers supports the creation of such sub-commands.
Source: Subparsers
While most questions of this tag are related to Python, Django and C# are also welcomed.