The title says it all...what's the easiest, tersest, and most flexible method or library for parsing Python command line arguments?
|
feedback
|
|
As other people pointed out, you are better off going with optparse over getopt. getopt is pretty much a one-to-one mapping of the standard getopt(3) C library functions, and not very easy to use. optparse, while being a bit more verbose, is much better structured and simpler to extend later on. Here's a typical line to add an option to your parser:
It pretty much speaks for itself; at processing time, it will accept -q or --query as options, store the argument in an attribute called query and has a default value if you don't specify it. It is also self-documenting in that you declare the help argument (which will be used when run with -h/--help) right there with the option. Usually you parse your arguments with:
This will, by default, parse the standard arguments passed to the script (sys.argv[1:]) options.query will then be set to the value you passed to the script. You create a parser simply by doing
These are all the basics you need. Here's a complete Python script that shows this:
5 lines of python that show you the basics. Save it in sample.py, and run it once with
and once with
Beyond that, you will find that optparse is very easy to extend. In one of my projects, I created a Command class which allows you to nest subcommands in a command tree easily. It uses optparse heavily to chain commands together. It's not something I can easily explain in a few lines, but feel free to browse around in my repository for the main class, as well as a class that uses it and the option parser | |||||||||
feedback
|
|
The new hip way is update: As of py2.7 argparse is part of the standard library and optparse is deprecated. | ||||
|
feedback
|
|
Pretty much everybody is using getopt Here is the example code for the doc :
So in a word, here is how it works. You've got two types of options. Those who are receiving an arguments, and those who are just like switches. sys.argv is pretty much your char** argv in C. Like in C you skip the first element which is the name of your program and parse only the arguments : sys.argv[1:] Getopt.getopt is will parse it according to the rule you give in argument. "ho:v" here describes the short arguments : -ONELETTER. The : means that -o accepts one arguments. Finally ["help", "output="] describes long arguments ( --MORETHANONELETTER ). The = after output once again means that output accepts one arguments. The result is a list of couple (option,argument) If an option doesn't accept any argument (like --help here) the arg part is an empty string. You then usually want to loop on this list and test the option name as in the example. I hope this helped you. | ||||
|
feedback
|
|
Use optparse which comes with the standard library. Here's a link describing how to use it: | |||
|
feedback
|
|
Just in case you might need to, this may help if you need to grab unicode arguments on Win32 (2K, XP etc):
| |||
|
feedback
|
|
I prefer optparse to getopt. It's very declarative: you tell it the names of the options and the effects they should have (e.g., setting a boolean field), and it hands you back a dictionary populated according to your specifications. | |||
|
feedback
|
|
I think the best way for larger projects is optparse, but if you are looking for an easy way, maybe http://werkzeug.pocoo.org/documentation/script is something for you.
So basically every function action_* is exposed to the command line and a nice help message is generated for free.
| ||||
|
feedback
|
|
The title doesn't say it all :) best != easiest and tersest I think the best way is the optparse way but that's certainly not the tersest ;) | |||
|
feedback
|
|
Check out commandlineapp. It makes things a lot easier to handle imo. http://blog.doughellmann.com/2008/06/commandlineapp-30.html | |||
|
feedback
|