| author: | Tshepang Lekhonkhobe |
|---|
This tutorial is intended to be a gentle introduction toargparse, therecommended command-line parsing module in the Python standard library.
Note
There are two other modules that fulfill the same task, namelygetopt (an equivalent forgetopt() from the Clanguage) and the deprecatedoptparse.Note also thatargparse is based onoptparse,and therefore very similar in terms of usage.
Let’s show the sort of functionality that we are going to explore in thisintroductory tutorial by making use of thels command:
$lscpython devguide prog.py pypy rm-unused-function.patch$ls pypyctypes_configure demo dotviewer include lib_pypy lib-python ...$ls -ltotal 20drwxr-xr-x 19 wena wena 4096 Feb 18 18:51 cpythondrwxr-xr-x 4 wena wena 4096 Feb 8 12:04 devguide-rwxr-xr-x 1 wena wena 535 Feb 19 00:05 prog.pydrwxr-xr-x 14 wena wena 4096 Feb 7 00:59 pypy-rw-r--r-- 1 wena wena 741 Feb 18 01:01 rm-unused-function.patch$ls --helpUsage: ls[OPTION]...[FILE]...List information about the FILEs(the current directory by default).Sort entries alphabeticallyifnone of -cftuvSUX nor --sort is specified....
A few concepts we can learn from the four commands:
Let us start with a very simple example which does (almost) nothing:
importargparseparser=argparse.ArgumentParser()parser.parse_args()
Following is a result of running the code:
$python3 prog.py$python3 prog.py --helpusage: prog.py[-h]optional arguments: -h, --help show thishelpmessage andexit$python3 prog.py --verboseusage: prog.py[-h]prog.py: error: unrecognized arguments: --verbose$python3 prog.py foousage: prog.py[-h]prog.py: error: unrecognized arguments: foo
Here is what is happening:
An example:
importargparseparser=argparse.ArgumentParser()parser.add_argument("echo")args=parser.parse_args()print(args.echo)
And running the code:
$python3 prog.pyusage: prog.py[-h]echoprog.py: error: the following arguments are required:echo$python3 prog.py --helpusage: prog.py[-h]echopositional arguments:echooptional arguments: -h, --help show thishelpmessage andexit$python3 prog.py foofoo
Here is what’s happening:
Note however that, although the help display looks nice and all, it currentlyis not as helpful as it can be. For example we see that we gotecho as apositional argument, but we don’t know what it does, other than by guessing orby reading the source code. So, let’s make it a bit more useful:
importargparseparser=argparse.ArgumentParser()parser.add_argument("echo",help="echo the string you use here")args=parser.parse_args()print(args.echo)
And we get:
$python3 prog.py -husage: prog.py[-h]echopositional arguments:echo echothe string you use hereoptional arguments: -h, --help show thishelpmessage andexit
Now, how about doing something even more useful:
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",help="display a square of a given number")args=parser.parse_args()print(args.square**2)
Following is a result of running the code:
$python3 prog.py 4Traceback(most recent call last): File"prog.py", line 5, in <module> print(args.square**2)TypeError: unsupported operandtype(s)for ** or pow():'str' and'int'
That didn’t go so well. That’s becauseargparse treats the options wegive it as strings, unless we tell it otherwise. So, let’s tellargparse to treat that input as an integer:
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",help="display a square of a given number",type=int)args=parser.parse_args()print(args.square**2)
Following is a result of running the code:
$python3 prog.py 416$python3 prog.py fourusage: prog.py[-h] squareprog.py: error: argument square: invalid int value:'four'
That went well. The program now even helpfully quits on bad illegal inputbefore proceeding.
So far we, have been playing with positional arguments. Let ushave a look on how to add optional ones:
importargparseparser=argparse.ArgumentParser()parser.add_argument("--verbosity",help="increase output verbosity")args=parser.parse_args()ifargs.verbosity:print("verbosity turned on")
And the output:
$python3 prog.py --verbosity 1verbosity turned on$python3 prog.py$python3 prog.py --helpusage: prog.py[-h][--verbosity VERBOSITY]optional arguments: -h, --help show thishelpmessage andexit --verbosity VERBOSITY increase output verbosity$python3 prog.py --verbosityusage: prog.py[-h][--verbosity VERBOSITY]prog.py: error: argument --verbosity: expected one argument
Here is what is happening:
The above example accepts arbitrary integer values for--verbosity, but forour simple program, only two values are actually useful,True orFalse.Let’s modify the code accordingly:
importargparseparser=argparse.ArgumentParser()parser.add_argument("--verbose",help="increase output verbosity",action="store_true")args=parser.parse_args()ifargs.verbose:print("verbosity turned on")
And the output:
$python3 prog.py --verboseverbosity turned on$python3 prog.py --verbose 1usage: prog.py[-h][--verbose]prog.py: error: unrecognized arguments: 1$python3 prog.py --helpusage: prog.py[-h][--verbose]optional arguments: -h, --help show thishelpmessage andexit --verbose increase output verbosity
Here is what is happening:
If you are familiar with command line usage,you will notice that I haven’t yet touched on the topic of shortversions of the options. It’s quite simple:
importargparseparser=argparse.ArgumentParser()parser.add_argument("-v","--verbose",help="increase output verbosity",action="store_true")args=parser.parse_args()ifargs.verbose:print("verbosity turned on")
And here goes:
$python3 prog.py -vverbosity turned on$python3 prog.py --helpusage: prog.py[-h][-v]optional arguments: -h, --help show thishelpmessage andexit -v, --verbose increase output verbosity
Note that the new ability is also reflected in the help text.
Our program keeps growing in complexity:
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",type=int,help="display a square of a given number")parser.add_argument("-v","--verbose",action="store_true",help="increase output verbosity")args=parser.parse_args()answer=args.square**2ifargs.verbose:print("the square of {} equals {}".format(args.square,answer))else:print(answer)
And now the output:
$python3 prog.pyusage: prog.py[-h][-v] squareprog.py: error: the following arguments are required: square$python3 prog.py 416$python3 prog.py 4 --verbosethe square of 4 equals 16$python3 prog.py --verbose 4the square of 4 equals 16
How about we give this program of ours back the ability to havemultiple verbosity values, and actually get to use them:
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",type=int,help="display a square of a given number")parser.add_argument("-v","--verbosity",type=int,help="increase output verbosity")args=parser.parse_args()answer=args.square**2ifargs.verbosity==2:print("the square of {} equals {}".format(args.square,answer))elifargs.verbosity==1:print("{}^2 == {}".format(args.square,answer))else:print(answer)
And the output:
$python3 prog.py 416$python3 prog.py 4 -vusage: prog.py[-h][-v VERBOSITY] squareprog.py: error: argument -v/--verbosity: expected one argument$python3 prog.py 4 -v 14^2== 16$python3 prog.py 4 -v 2the square of 4 equals 16$python3 prog.py 4 -v 316
These all look good except the last one, which exposes a bug in our program.Let’s fix it by restricting the values the--verbosity option can accept:
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",type=int,help="display a square of a given number")parser.add_argument("-v","--verbosity",type=int,choices=[0,1,2],help="increase output verbosity")args=parser.parse_args()answer=args.square**2ifargs.verbosity==2:print("the square of {} equals {}".format(args.square,answer))elifargs.verbosity==1:print("{}^2 == {}".format(args.square,answer))else:print(answer)
And the output:
$python3 prog.py 4 -v 3usage: prog.py[-h][-v{0,1,2}] squareprog.py: error: argument -v/--verbosity: invalid choice: 3(choose from 0, 1, 2)$python3 prog.py 4 -husage: prog.py[-h][-v{0,1,2}] squarepositional arguments: square display a square of a given numberoptional arguments: -h, --help show thishelpmessage andexit -v{0,1,2}, --verbosity{0,1,2} increase output verbosity
Note that the change also reflects both in the error message as well as thehelp string.
Now, let’s use a different approach of playing with verbosity, which is prettycommon. It also matches the way the CPython executable handles its ownverbosity argument (check the output ofpython--help):
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",type=int,help="display the square of a given number")parser.add_argument("-v","--verbosity",action="count",help="increase output verbosity")args=parser.parse_args()answer=args.square**2ifargs.verbosity==2:print("the square of {} equals {}".format(args.square,answer))elifargs.verbosity==1:print("{}^2 == {}".format(args.square,answer))else:print(answer)
We have introduced another action, “count”,to count the number of occurrences of a specific optional arguments:
$python3 prog.py 416$python3 prog.py 4 -v4^2== 16$python3 prog.py 4 -vvthe square of 4 equals 16$python3 prog.py 4 --verbosity --verbositythe square of 4 equals 16$python3 prog.py 4 -v 1usage: prog.py[-h][-v] squareprog.py: error: unrecognized arguments: 1$python3 prog.py 4 -husage: prog.py[-h][-v] squarepositional arguments: square display a square of a given numberoptional arguments: -h, --help show thishelpmessage andexit -v, --verbosity increase output verbosity$python3 prog.py 4 -vvv16
Let’s fix:
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",type=int,help="display a square of a given number")parser.add_argument("-v","--verbosity",action="count",help="increase output verbosity")args=parser.parse_args()answer=args.square**2# bugfix: replace == with >=ifargs.verbosity>=2:print("the square of {} equals {}".format(args.square,answer))elifargs.verbosity>=1:print("{}^2 == {}".format(args.square,answer))else:print(answer)
And this is what it gives:
$python3 prog.py 4 -vvvthe square of 4 equals 16$python3 prog.py 4 -vvvvthe square of 4 equals 16$python3 prog.py 4Traceback(most recent call last): File"prog.py", line 11, in <module>ifargs.verbosity >= 2:TypeError: unorderable types: NoneType() >= int()
Let’s fix that bug:
importargparseparser=argparse.ArgumentParser()parser.add_argument("square",type=int,help="display a square of a given number")parser.add_argument("-v","--verbosity",action="count",default=0,help="increase output verbosity")args=parser.parse_args()answer=args.square**2ifargs.verbosity>=2:print("the square of {} equals {}".format(args.square,answer))elifargs.verbosity>=1:print("{}^2 == {}".format(args.square,answer))else:print(answer)
We’ve just introduced yet another keyword,default.We’ve set it to0 in order to make it comparable to the other int values.Remember that by default,if an optional argument isn’t specified,it gets theNone value, and that cannot be compared to an int value(hence theTypeError exception).
And:
$python3 prog.py 416You can go quite far just with what we’ve learned so far,and we have only scratched the surface.Theargparse module is very powerful,and we’ll explore a bit more of it before we end this tutorial.
What if we wanted to expand our tiny program to perform other powers,not just squares:
importargparseparser=argparse.ArgumentParser()parser.add_argument("x",type=int,help="the base")parser.add_argument("y",type=int,help="the exponent")parser.add_argument("-v","--verbosity",action="count",default=0)args=parser.parse_args()answer=args.x**args.yifargs.verbosity>=2:print("{} to the power {} equals {}".format(args.x,args.y,answer))elifargs.verbosity>=1:print("{}^{} == {}".format(args.x,args.y,answer))else:print(answer)
Output:
$python3 prog.pyusage: prog.py[-h][-v] x yprog.py: error: the following arguments are required: x, y$python3 prog.py -husage: prog.py[-h][-v] x ypositional arguments: x the base y the exponentoptional arguments: -h, --help show thishelpmessage andexit -v, --verbosity$python3 prog.py 4 2 -v4^2== 16
Notice that so far we’ve been using verbosity level tochange the textthat gets displayed. The following example instead uses verbosity levelto displaymore text instead:
importargparseparser=argparse.ArgumentParser()parser.add_argument("x",type=int,help="the base")parser.add_argument("y",type=int,help="the exponent")parser.add_argument("-v","--verbosity",action="count",default=0)args=parser.parse_args()answer=args.x**args.yifargs.verbosity>=2:print("Running '{}'".format(__file__))ifargs.verbosity>=1:print("{}^{} == ".format(args.x,args.y),end="")print(answer)
Output:
$python3 prog.py 4 216$python3 prog.py 4 2 -v4^2== 16$python3 prog.py 4 2 -vvRunning'prog.py'4^2== 16
So far, we have been working with two methods of anargparse.ArgumentParser instance. Let’s introduce a third one,add_mutually_exclusive_group(). It allows for us to specify options thatconflict with each other. Let’s also change the rest of the program so thatthe new functionality makes more sense:we’ll introduce the--quiet option,which will be the opposite of the--verbose one:
importargparseparser=argparse.ArgumentParser()group=parser.add_mutually_exclusive_group()group.add_argument("-v","--verbose",action="store_true")group.add_argument("-q","--quiet",action="store_true")parser.add_argument("x",type=int,help="the base")parser.add_argument("y",type=int,help="the exponent")args=parser.parse_args()answer=args.x**args.yifargs.quiet:print(answer)elifargs.verbose:print("{} to the power {} equals {}".format(args.x,args.y,answer))else:print("{}^{} == {}".format(args.x,args.y,answer))
Our program is now simpler, and we’ve lost some functionality for the sake ofdemonstration. Anyways, here’s the output:
$python3 prog.py 4 24^2== 16$python3 prog.py 4 2 -q16$python3 prog.py 4 2 -v4 to the power 2 equals 16$python3 prog.py 4 2 -vqusage: prog.py[-h][-v | -q] x yprog.py: error: argument -q/--quiet: not allowed with argument -v/--verbose$python3 prog.py 4 2 -v --quietusage: prog.py[-h][-v | -q] x yprog.py: error: argument -q/--quiet: not allowed with argument -v/--verbose
That should be easy to follow. I’ve added that last output so you can see thesort of flexibility you get, i.e. mixing long form options with short formones.
Before we conclude, you probably want to tell your users the main purpose ofyour program, just in case they don’t know:
importargparseparser=argparse.ArgumentParser(description="calculate X to the power of Y")group=parser.add_mutually_exclusive_group()group.add_argument("-v","--verbose",action="store_true")group.add_argument("-q","--quiet",action="store_true")parser.add_argument("x",type=int,help="the base")parser.add_argument("y",type=int,help="the exponent")args=parser.parse_args()answer=args.x**args.yifargs.quiet:print(answer)elifargs.verbose:print("{} to the power {} equals {}".format(args.x,args.y,answer))else:print("{}^{} == {}".format(args.x,args.y,answer))
Note that slight difference in the usage text. Note the[-v|-q],which tells us that we can either use-v or-q,but not both at the same time:
$python3 prog.py --helpusage: prog.py[-h][-v | -q] x ycalculate X to the power of Ypositional arguments: x the base y the exponentoptional arguments: -h, --help show thishelpmessage andexit -v, --verbose -q, --quiet
An introduction to the ipaddress module
Enter search terms or a module, class or function name.