Tagged Questions
`optparse` is a deprecated command-line argument parser for Python included in the standard library.
26
votes
3answers
4k views
Why use argparse rather than optparse?
I noticed that the Python 2.7 documentation includes yet another command-line parsing module. In addition to getopt and optparse we now have argparse.
Why has yet another command-line parsing module ...
15
votes
2answers
674 views
Can Python's optparse display the default value of an option?
Is there a way to make Python's optparse print the default value of an option or flag when showing the help with --help?
15
votes
5answers
3k views
How do I format positional argument help using Python's optparse?
As mentioned in the docs the optparse.OptionParser uses an IndentedHelpFormatter to output the formatted option help, for which which I found some API documentation.
I want to display a similarly ...
10
votes
1answer
1k views
Python optparse Values Instance
How can I take the opt result of
opt, args = parser.parse_args()
and place it in a dict? Python calls opt a "Values Instance" and I can't find any way to turn a Values Instance into a list or ...
9
votes
6answers
1k views
Using a file to store optparse arguments
I've been using optparse for a while now, and would like to add the ability to load the arguments from a config file.
So far the best I can think of is a wrapper batch script with the arguments ...
8
votes
5answers
2k views
python optparse, how to include additional info in usage output?
Using python's optparse module I would like to add extra example lines below the regular usage output. My current help_print() output looks like this:
usage: check_dell.py [options]
options:
-h, ...
7
votes
2answers
206 views
How do you handle options that can't be used together (using OptionParser)?
My Python script (for todo lists) is started from the command line like this:
todo [options] <command> [command-options]
Some options can not be used together, for example
todo add --pos=3 ...
7
votes
3answers
2k views
How do I mock the Python method OptionParser.error(), which does a sys.exit()?
I'm trying to unit test some code that looks like this:
def main():
parser = optparse.OptionParser(description='This tool is cool', prog='cool-tool')
parser.add_option('--foo', ...
6
votes
3answers
1k views
Using ruby's OptionParser to parse sub-commands
I'd like to be able to use ruby's OptionParser to parse sub-commands of the form
COMMAND [GLOBAL FLAGS] [SUB-COMMAND [SUB-COMMAND FLAGS]]
like:
git branch -a
gem list foo
I know I could switch ...
6
votes
2answers
2k views
Python Optparse list
I'm using the python optparse module in my program, and I'm having trouble finding an easy way to parse an option that contains a list of values. For example:
--groups one,two,three.
I'd like to be ...
6
votes
3answers
1k views
Python optparse metavar
I am not sure what optparse's metavar parameter is used for. I see it used all around, but I can't see its use.
Can someone make it clear to me? Thanks.
5
votes
5answers
1k views
Python optparse and spaces in an argument
When using optparse i want to get the whole string after an option, but I only get part of it up to the first space.
e.g.:
python myprog.py --executable python someOtherProg.py
What I get in ...
5
votes
2answers
526 views
ASCII art in the optparse description
I'm making a shell script with the optparse module, jut for fun, so I wanted to print a nice ascii drawing in place of the description.
Turns out that this code:
parser = optparse.OptionParser(
...
5
votes
2answers
2k views
How can I get optparse's OptionParser to ignore invalid arguments?
In python's OptionParser, how can I instruct it to ignore undefined flag arguments supplied to method parse_args?
e.g.
I've only defined option --foo for my OptionParser instance, but I call ...
4
votes
1answer
249 views
name 'OptionGroup' is not defined
This error is done strictly by following examples found on the docs. And you can't find any clarification about it anywhere, be it that long long docs page, google or stackoverflow. Plus, reading ...
4
votes
2answers
2k views
Why am I getting no attribute '__getitem__' error for dictionary?
Why am I getting no attribute __getitem__ error for dictionary:
Traceback (most recent call last):
File "./thumbnail.py", line 39, in <module>
main()
File "./thumbnail.py", line 19, in ...
4
votes
4answers
513 views
Python optparse defaults vs function defaults
I'm writing a python script which I would like to be able to both call from the command line and import as a library function.
Ideally the command line options and the function should use the same set ...
4
votes
4answers
1k views
With Python's optparse module, how do you create an option that takes a variable number of arguments?
With Perl's Getopt::Long you can easily define command-line options that take a variable number of arguments:
foo.pl --files a.txt --verbose
foo.pl --files a.txt b.txt c.txt --verbose
...
3
votes
1answer
81 views
Python argument to provide less-like limiting functionality
Any idea if there is a clean way to make optparse bypass/handle a generic -XXX option ?
My case is an application for which i want to provide a less like option to limit the application s output ...
3
votes
2answers
67 views
Python optparse, default values, and explicit options
Take the following rather standard code:
from optparse import OptionParser
opts = OptionParser()
opts.add_option('-f', action="store_true")
opts.add_option("-x", dest="x", ...
3
votes
3answers
435 views
Python optparse not working for me
I'm currently learning on how to use the Python optparse module. I'm trying the following example script but the args variable comes out empty. I tried this using Python 2.5 and 2.6 but to no avail.
...
3
votes
1answer
218 views
How to know if optparse option was passed in the command line or as a default
Using python optparse.py, is there a way to work out whether a specific option value was set from the command line or from the default value.
Ideally I would like to have a dict just like defaults, ...
3
votes
4answers
730 views
How to parse an argument without a name with Ruby's optparse
I need to parse a command line like
script.rb <mandatory filename> [options]
with optparse.
Sure I can write some custom code to handle the filename, then pass ARGV to optparse, but maybe ...
3
votes
2answers
546 views
How to comply to PEP 257 docstrings when using Python's optparse module?
According to PEP 257 the docstring of command line script should be its usage message.
The docstring of a script (a
stand-alone program) should be usable
as its "usage" message, printed when
...
3
votes
2answers
626 views
Optparse: Usage on variable arg callback action does not indicate that extra params are needed
I have implemented in my python code a callback for variable arguments similar to what can be found here:
hxxp://docs.python.org/library/optparse.html#callback-example-6-variable-arguments
Adding the ...
2
votes
2answers
37 views
Optparse with integer argument
I hit the following interesting error:
parser.add_option("-n", "--number", metavar="NUMBER", type="int",
help="number is NUMBER")
(options, args) = parser.parse_args()
if ...
2
votes
1answer
129 views
Optparse callback not consuming argument
I'm trying to get to know optparse a bit better, but I'm struggling to understand why the following code behaves the way it does. Am I doing something stupid?
import optparse
def store_test(option, ...
2
votes
2answers
85 views
problem using python optparse and lambda as a callback
I'm having a problem by trying to assign a lambda as a callback to optparse to handle the case where multiple -v's are passed to the app, which should increment the global variable DEBUG each time a ...
2
votes
5answers
362 views
Getting command line arguments as tuples in python
This might be a trivial issue, but I am a beginner at Python.
Here is an example of how I would like to call my script:
python script.py -f file1.txt "string1" "string2" -f file2.txt "string3" ...
2
votes
2answers
435 views
Can optparse skip unknown options, to be processed later in a ruby program?
Is there any way to kick off optparse several times in one Ruby program, each with different sets of options?
Example:
$ myscript.rb --subsys1opt a --subsys2opt b
here, myscript.rb would use ...
2
votes
3answers
131 views
Proper help for arguments
Python optparse works very good when script usage is something like this
%prog [options] [args]
But I need to write help for script with 1 required argument, so usage will be like this
%prog ...
2
votes
3answers
493 views
How to make a custom command line interface using OptionParser?
I am using the OptionParser from optparse module to parse my command that I get using the raw_input().
I have these questions.
1.) I use OptionParser to parse this input, say for eg. (getting ...
2
votes
2answers
420 views
Should I forward arguments as *args & **kwargs?
I have a class that handles command line arguments in my program using python's optparse module. It is also inherited by several classes to create subsets of parameters. To encapsulate the option ...
2
votes
3answers
893 views
Extracting filenames from command line arguments with Ruby
I'm trying to use optparse to parse command line arguments. I would like my program to accept arguments like that:
$ ./myscript.rb [options] filename
I can easily manage the [options] part:
...
2
votes
4answers
1k views
OptionParser - supporting any option at the end of the command line
I'm writing a small program that's supposed to execute a command on a remote server (let's say a reasonably dumb wrapper around ssh [hostname] [command]).
I want to execute it as such:
./floep ...
2
votes
4answers
1k views
Python, optparse and file mask
if __name__=='__main__':
parser = OptionParser()
parser.add_option("-i", "--input_file",
dest="input_filename",
help="Read input from FILE", ...
1
vote
4answers
81 views
groking command line parameters in a python script
I am relatively new to python. I want to write a script and pass it parameters like this:
myscript.py --arg1=hello --arg2=world
In the script, I want to access the arguments arg1 and arg2. Can ...
1
vote
2answers
104 views
Consistent way to redirect both stdin & stdout to files in python using optparse
I've got a dozen programs that can accept input via stdin or an option, and I'd like to implement the same features in a similar way for the output.
The optparse code looks like this:
...
1
vote
1answer
85 views
optparse and strings
Trying to learn how to use outparse. So here is the situation, I think I got my setup correct its just how to set my options is kinda... confusing me. Basically I just want to check my filename to see ...
1
vote
3answers
56 views
creating an array from a command line option (python::optparse)
There is a python script which reads a benchmark name from command line like this:
-b benchname1
The code for this perpose is:
import optparse
import Mybench
parser = optparse.OptionParser()
# ...
1
vote
1answer
87 views
Printing list of only some options using Ruby OptionParser
My program has a lot of command line options. But I don't want to overwhelm the user when he types --help. Instead of printing out all options, I'd like to list only the most important ones, printing ...
1
vote
2answers
125 views
python - elegantly handle sequence of multiple arguments
Thus far I was handling multiple arguments via Optparse as a string,
Eg:
--update_entities="host_group hostname entity_type entities2monitor"
where entities2monitor has variable arguments, ...
1
vote
1answer
117 views
ImportError: cannot import name NO_DEFAULT
I'm trying to run a Django site's manage.py script, but it fails with the following error:
Traceback (most recent call last):
File "manage.py", line 2, in <module>
from ...
1
vote
2answers
205 views
optparse(): Input validation
My apology in advance if it's already answered somewhere; I've been in the python site since last hr. but didn't quite figure out how I can I do this. My script should take the options like this:
...
1
vote
4answers
215 views
optparse in python
Is there a way I can configure optparse in python to not take the beginning -? So instead of
%program -d optionvalue
i get
%program d optionvalue
Currently, when I try to do
...
1
vote
1answer
114 views
Help me get options off the ground for my little script
I'm trying to get my script to do different things based on options. But... I don't know ruby, at all. I can't even tell you what an array really is. Here's what I got:
require 'optparse'
require ...
1
vote
1answer
407 views
understanding OptionParser
I was trying out optparse and this is my initial script.
#!/usr/bin/env python
import os, sys
from optparse import OptionParser
parser = OptionParser()
usage = "usage: %prog [options] arg1 arg2"
...
1
vote
4answers
392 views
parsing commandline arguments as wildcards
I wrote a little ruby script using optparse. I'd like to pass a list of files to my script using optparse. I would like to add a couple of files using wildcards (e.g. /dir/*). (Background: simple ...
1
vote
2answers
215 views
OptParse: A way to handle directories or files?
I find my self doing this alot:
optparse = OptionParser.new do |opts|
options[:directory] = "/tmp/"
opts.on('-d','--dir DIR', String, 'Directory to put the output in.') do |x|
raise "No such ...
1
vote
2answers
198 views
Parsing arbitrary number of arguments in Python OptParser
How can I define an option with an arbitrary number of arguments in Python's OptParser?
I'd like something like:
python my_program.py --my-option X,Y # one argument passed, "X,Y"
python ...