Tagged Questions

1
vote
3answers
80 views

Processing (possibly) optional arguments in Python

I am working on a series of command line tools which connect to the same server and do related but different things. I'd like users to be able to have a single configuration file where they can place …
1
vote
1answer
56 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 …
2
votes
3answers
82 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 …
0
votes
2answers
49 views

Optparse library - callback action while storing arg

My code: def main(): usage = "usage: %prog [options] arg" parser = OptionParser(usage) parser.add_option("-p", "--pending", action="callback", callback=pending, type="string", …
4
votes
4answers
114 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 …
2
votes
2answers
184 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 …
3
votes
2answers
156 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 …
12
votes
2answers
135 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?
2
votes
2answers
177 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 …
0
votes
2answers
63 views

optpase returns true class while string is provided in cmd line arguments

I'm stuck in a totally stupid situation. When I use the snippet below, despite my command line being "./the_script.rb -s serv" and I check the value of the service variable within the code, it's …
1
vote
3answers
389 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: …
1
vote
4answers
312 views

OptionParser - supporting any option at the end of the command line

Hi guys, 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: …
4
votes
3answers
523 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', …
3
votes
2answers
514 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 …
4
votes
2answers
358 views

Python optparse metavar

Hi, 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.

1 2 next
15 30 50 per page