I am originally a C programmer. I have seen numerous tricks and "hacks" to read many different arguments.
What are some of the ways Python programmers can do this?
|
I am originally a C programmer. I have seen numerous tricks and "hacks" to read many different arguments. What are some of the ways Python programmers can do this? Related |
||||
|
|
|
There are the following modules in the standard library:
Here is an example that uses the latter from the docs:
optparse supports (among other things):
Please note that optparse was deprecated in version 2.7 of Python:http://docs.python.org/2/library/optparse.html. argparse is the replacement: http://docs.python.org/2/library/argparse.html#module-argparse |
|||||||||||||||||||||
|
sys.argv is a list that contains all the arguments passed to the script on the command line. |
|||||||||
|
|
Just going around evangelizing for argparse which is better for these reasons.. essentially: (copied from the link)
And my personal favorite:
|
|||||
|
|
I use optparse myself, but really like the direction Simon Willison is taking with his recently introduced optfunc library. It works by:
So, for example, this function definition:
is turned into this optparse help text:
|
|||
|
|
|
There is also
Usage:
|
|||
|
|
|
One way to do it is using
|
||||
|
|
|
||||
|
|
|
As you can see optparse "The optparse module is deprecated with and will not be developed further; development will continue with the argparse module." |
|||
|
|
|
You may be interested in a little Python module I wrote to make handling of command line arguments even easier (open source and free to use) - Commando |
|||||
|
|
The docopt library is really slick. It builds an argument dict from the usage string for your app. Eg from the docopt readme:
|
|||
|
|
|
I like getopt from stdlib, eg:
Lately I have been wrapping something similiar to this to make things less verbose (eg; making "-h" implicit). |
|||
|
|
|
My solution is entrypoint2. Example:
help text:
|
|||
|
|