`optparse` is a deprecated command-line argument parser for Python included in the standard library.
0
votes
2answers
18 views
Python optparse: how to make a repeatable group of options?
Here is a simplified view of the script I am programming in python:
The script is used to compare two files.
The type (local or remote) of each file must be specified (mandatory)
For a local file:
...
0
votes
1answer
20 views
Python optparse not working - syntax error
this script is based on another for an assignment. My code looks the same as theirs and BOTH error out with a syntax error. I am running with ActiveState Active Python 2.7 64-bit
def showEvents():
...
0
votes
3answers
31 views
optparse does not save second whitespace into arg
I am writing a regex match program, and I am unable to use regular expressions that start with spaces.
Is there any way to tell OptParse to only delimit by the first whitespace?
-2
votes
2answers
45 views
What kind of object does parser.parse_args()[0] return?
As I gather from the python docs (http://docs.python.org/3.3/library/optparse.html), in the expression
(options, args) = parser.parse_args()
options is an object whose attributes are set by parser, ...
0
votes
2answers
66 views
OptionParser to parse arguments form file instead of command line
I am using Ruby to execute a code that takes command line arguments.
now i trying to use the same program with differnt options so i am putting the options in a file and i want the program to read ...
0
votes
0answers
23 views
Text wrapping from optparse help string on multiple lines
I am trying to make my help strings helpful. To do this I have a function Function() with a doc string something like
def Function(x):
""" First line describing what Function does
Keyword Arguments
...
0
votes
1answer
28 views
OptionParser throwing 'Missing Argument' for no reasons
I only have 1 possible option and it is parsed as following:
def parse_options
options = {}
options[:markdown] = false
OptionParser.new do |opts|
opts.on('-md', '--markdown', ...
0
votes
0answers
29 views
How to check which subparser is used for argparser?
I'm using argparser module in Python3 and have codes like this:
parser = FriendlyArgumentParser(description=description)
sub_parsers = parser.add_subparsers(help="sub-command help", ...
1
vote
1answer
34 views
Combining an API function with argument defaults with an OptionParser
I'm struggling to cleanly combine an API function in Python that has defaulted arguments, with a command-line script using optparse that wraps it. Let's suppose the API function looks like this:
def ...
0
votes
1answer
34 views
suppress one of the options from help when using optparse in python
Consider the following:
parser.add_option("-f", "--file", "--secret", action = "append", type = "string", dest = "filename", default = [], help = "specify the files")
I would like to hide the ...
1
vote
1answer
41 views
overriding OptionParser's add_option function in python
I have written a subclass for Option and OptionParser in optparse. I am overriding the add_option function in OptionParser to make it parse a new keyword. Following is my code.
from optparse import ...
1
vote
3answers
75 views
parsing non GNU-standard options using optparse in python
For some reason, I have non standard command line options for my program. My program takes in a long option also with a single '-'. For example, a valid command line option would be '-f' / '-foo'. ...
0
votes
2answers
38 views
Adding suboptions using optparse in Jython
I am using optparse to add options to Jython script. They are like
$script.py -clear
$script.py -start
$script.py -stop
so on, now my question is how do I add suboptions to any certain option,, ...
0
votes
1answer
61 views
Cannot get ruby optparse to output opts
I'm trying to learn how to use optparse to take in command line options however I am having a hard time getting it to function as it shows in the class documentation and any examples I can find ...
0
votes
1answer
95 views
Ruby optparse Limitations
I currently script in Python but I wish to try Ruby for several reasons. I've looked at a lot of sample code and read a lot of documentation over the last week. One point of concern I have is the lack ...
0
votes
0answers
21 views
Store option, if given, set from default, if not
Here is my problem.
I got this task to do from my teacher: using optparse, define option:
-f "filename"
If filename is not given, use some default value, "test.txt" for example.
I've read ...
1
vote
1answer
52 views
python optparse treat next option as the option argument for the current one when it's missing
I use optparse to parse the command options for my script.
I have -f and -c options that both require an option argument. But when it's missing, it will treat the next option as option argument for ...
0
votes
1answer
157 views
reading Unix wild card filenames from command line in Python
What's the correct way to handle Unix style wildcard arguments using optparse in Python? I have:
myscript.py:
from optparse import OptionParser
parser = OptionParser()
parser.add_option("--input", ...
0
votes
2answers
57 views
Python optparse help message formatting
I am using optparse to process the command line arguments and I am running into a problem of multiple space lines for the optparse help message.
group.add_option(
'-H',
'--hostname',
...
0
votes
1answer
73 views
Triggering callback on default value in optparse
I'm using Python's optparse to do what it does best, but I can't figure out how to make the option callback trigger on the default argument value if no other is specified via command-line; is this ...
1
vote
1answer
65 views
Spawning a process with inherited python optparse options
I have a bunch of python scripts that use the optparse package. I'd like to give them all a "remote_run" option, which I'd like to use as follows:
if options.remote_run:
cmd = create_cmd(options)
...
1
vote
2answers
181 views
Python optparse make_option() equivalent in argparse
From the OPTPARSE library reference:
option_list = [
make_option("-f", "--filename",
action="store", type="string", dest="filename"),
make_option("-q", "--quiet",
...
0
votes
3answers
86 views
How to pass a parameter list to another function in Python?
Using optparse, I want to separate the list of option list parameters from the place where I call add_option(). How do I package the stuff up in File A (and then unpack in file B) so that this will ...
0
votes
3answers
273 views
Passing multiple arguments via command line in R
I am trying to pass multiple file path arguments via command line to an Rscript which can then be processed using an arguments parser. Ultimately I would want something like this
Rscript test.R ...
1
vote
1answer
46 views
Make optparse treat certain options as positional arguments
I have a program that takes in arguments of the form filename:field[slice], which works fine. But I also wish to support the common notation that a filename of - means standard input. Sadly, ...
-2
votes
1answer
52 views
How to use a hash when entering the hash name in a variable [closed]
I'm trying to have a hash/array, such that, when the user type in the script with an argument, say fruits, it will use the fruits={.....} hash. For example:
fruits={ "a" => "apple" , "b" => ...
0
votes
1answer
84 views
Option With 2 Arguments in OptParse
I'm trying to do something that looks like this:
opt_parser = OptionParser.new do |opt|
opt.banner = "Test"
opt.separator ""
opt.on("-t", "--test arg1 arg2", "Test") do |arg1, arg2|
...
0
votes
1answer
152 views
Python argparse argument with quotes
Is there any way I can tell argparse to not eat quotation marks?
For example, When I give an argument with quotes, argparse only takes what's inside of the quotes as the argument. I want to capture ...
0
votes
2answers
92 views
How can I flatten an optparse structure?
I'm trying to build a management command for Django and I've run into an issue. It seems that the option_list variable needs to be a flattened list of options.
Here's the code — edited for brevity — ...
1
vote
1answer
237 views
Set a default choice for optionparser when the option is given
I have a python option parsers that parses an optional --list-something option.
I also want the --list-something option to have an optional argument (an option)
Using the argument default="simple" ...
0
votes
1answer
137 views
How can I configure optparse to accept both parameter options as a command?
I'm using Ruby's optparse library to parse the options for my command line app but I can't figure out how to also accept a command.
It would be something like this:
commit -f -d init
init would be ...
12
votes
2answers
843 views
Python argparse ignore unrecognised arguments
Optparse, the old version just ignores all unrecognised arguments and carries on. In most situations, this isn't ideal and was changed in argparse. But there are a few situations where you want to ...
4
votes
2answers
117 views
How to support both argparse and optparse?
I have a small application that runs on fairly recent Linux distributions with Python 2.7+ but also on CentOS and Scientific Linux boxes that have not yet made the switch to Python 2.7. optparse is ...
2
votes
2answers
294 views
Detecting if any command-line options were specified more than once with optparse or argparse
Python optparse normally allows the user to specify an option more than once and silently ignores all occurrences of the option but the last one. For example, if the action of option --foo is store ...
1
vote
2answers
269 views
Most pythonic way of accepting arguments using optparse
I currently have a python file that utilizes sys.argv[1] to accept a string at the command line. It then performs operations on that string and then returns the modified string to the command line.
...
2
votes
5answers
124 views
Open Source Scientific Project - Use Python 2.6 or 2.7?
I've seen several other topics on whether to use 2.x or 3.x. However, most of these are at least two years old and do not distinguish between 2.6 and 2.7.
I am rebooting a scientific project that I ...
1
vote
2answers
134 views
optparse csv.reader
Can somebody help me, I'm trying to link an optparse with a csv reader, but I have been unable to do so. Below is my code:
import csv
from optparse import OptionParser
parser = OptionParser()
...
0
votes
1answer
95 views
py.test Within same directory structure cannot have pytest_addoption with same option name
I have the following test directory structure and each has their own conftest.py:
tests/api
tests/api/newapi
tests/sanity
In conftest.py, pytest_addoption has identical option entry as ...
0
votes
2answers
126 views
Optparse Python Set Boolean
I'm having a ton of trouble getting optparse to work in python. It is my first time using it, so any help would be greatly appreciated. I read through all the documentation, but even with their ...
1
vote
1answer
211 views
Passing optional arguments from optparse
I'm trying to figure out how to pass optional arguments from optparse. The problem I'm having is if an optparse option is not specified, it defaults to a None type, but if I pass the None type into a ...
0
votes
3answers
381 views
Defining a variable with optparse in Python
I am curious how to set a variable using optparse. I run the program as such;
programname.py -d c:\users\\etc\etc\etc
I want to be able to use -d C:\Users\\etc\etc to populate a variable called, ...
0
votes
1answer
249 views
OptParse, whitespace and bash
I have a weird issue with bash / optparse. I need to pass string to my python script when string is defined.
I use following code:
./lol.py `if [ -n "$URL" ]; then echo -u \"$URL\"; fi`
and here ...
0
votes
0answers
104 views
Approach for combining command line and environment variable data in Python
I'm writing a common function to check for the presence of certain command line options and return an object containing them. So far, using optparse (I'm limited to using Python 2.6.2), I've got:
def ...
1
vote
2answers
49 views
Why do you have to provide the parser twice when creating an OptionGroup?
According to the Python documentation, you have to provide the parser when creating the OptionGroup:
group = OptionGroup(parser, "Dangerous Options",
"Caution: use these options ...
2
votes
1answer
1k views
Python: switching from optparse to argparse
After switching from optparse to argparse - I'm experiencing strange errors. Argparse parse args only if leave no space:
myScript.py -oOpt
or put an equal sign:
myScript.py -o=Opt
and it doesn't ...
0
votes
2answers
230 views
How to process string input as 'None' as Nonetype
In optparse module, I've an option which take a path value (say build).
Issue: I've a check if this option is None but its failing if one passes --build=None.
Reason: The reason is default type for ...
2
votes
2answers
437 views
Negative boolean options --no-whatever in optparse?
With optparse, is there a simple way to define negative options, e.g., --no-cleanup?
I did it this way, but it's cumbersome and bug-prone, especially due to the None check which is easy to forget and ...
6
votes
3answers
281 views
python - beginner - integrating optparse in a program
I've started a serious attempt to learn some Python as my first programming language with some basic knowledge on algorithms. Since everyone recommends that the best way to start is to find something ...
1
vote
1answer
333 views
Remove parsed options and their values from sys.argv
I am trying to use optparse (to parse command line options to my script) and fileinput (to have the flexibility to provide data input via pipe or file).
import optparse, fileinput
parser = ...
0
votes
2answers
63 views
Is there an easy way to set up abbreviations with python's argh library?
I'm using the argh library to create a python command line tool. Several of the names I'm using have turned out to be pretty long, e.g.:
./my_program.py download-and-parse-data --randomize-order ...


