I'm having a small issue with argparse. I have an option xlim which is the xrange of a plot. I want to be able to pass numbers like -2e-5. However this does not work - argparse interprets this is a positional argument. If I do -0.00002 it works - argparse reads it as a negative number. Is it possible to have able to read in -2e-3?

The code is below, and an example of how I would run it is:

./blaa.py --xlim -2.e-3 1e4 

If I do the following it works:

./blaa.py --xlim -0.002 1e4 

The code:

parser.add_argument('--xlim', nargs = 2,
                  help = 'X axis limits',
                  action = 'store', type = float, 
                  default = [-1.e-3, 1.e-3])

Whilst I can get it to work this way I would really rather be able to use scientific notation. Anyone have any ideas?

Cheers

link|improve this question
Does quoting -2e-5 help? – nmichaels Jan 26 at 21:00
According to code.google.com/p/argparse/issues/detail?id=37 it should have been fixed. Check whether the version of argparse you have is newer or same. – favoretti Jan 26 at 21:03
@nmichaels Hi, do you mean like "-2e-5"? It doesn't work unfortunately, I think it still interprets it as an argument. The exact error from ./blah.py -xlim "-.2e-5" 1e5 is --xlim: expected 2 argument(s). If I use \- it thinks its a string and then complains because it should be a float – user1027686 Jan 26 at 21:05
Yeah, this doesn't appear to have been fixed. However, it only affects options which have more than one argument and can be negative. Irritating workaround is to use --xlower and --xupper with the quoted notation: --xlower="-1.e-3". That works – Chris Jan 26 at 21:08
@favoretti Hi - I just tried v1.2 and it still an issue. – user1027686 Jan 26 at 21:18
show 2 more comments
feedback

1 Answer

up vote 3 down vote accepted

As already pointed out by the comments, the problem is that a - prefix is parsed as an option instead of as an argument. One way to workaround this is change the prefix used for options with prefix_chars argument:

#!/usr/bin/python
import argparse

parser = argparse.ArgumentParser(prefix_chars='@')
parser.add_argument('@@xlim', nargs = 2,
                  help = 'X axis limits',
                  action = 'store', type = float,
                  default = [-1.e-3, 1.e-3])
print parser.parse_args()

Example output:

$ ./blaa.py @@xlim -2.e-3 1e4
Namespace(xlim=[-0.002, 10000.0])

Edit: Alternatively, you can keep using - as separator, pass xlim as a single value and use a function in type to implement your own parsing:

#!/usr/bin/python
import argparse

def two_floats(value):
    values = value.split()
    if len(values) != 2:
        raise argparse.ArgumentError
    values = map(float, values)
    return values

parser = argparse.ArgumentParser()
parser.add_argument('--xlim', 
                  help = 'X axis limits',
                  action = 'store', type=two_floats,
                  default = [-1.e-3, 1.e-3])
print parser.parse_args()

Example output:

$ ./blaa.py --xlim "-2e-3 1e4"
Namespace(xlim=[-0.002, 10000.0])
link|improve this answer
I really wanted to keep the - as the separator so I did a crude parsing of sys.argv before I called parse_args(). The way I did it is in a comment above, but your way is much better. Thanks! – user1027686 Jan 27 at 14:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.