I have a question regarding python's argparse: Is it possible to have a optional argument, which does not require positional arguments?

Example:

parser.add_argument('lat', help="latitude")
parser.add_argument('lon', help="longitude")
parser.add_argument('--method', help="calculation method (default: add)", default="add")
parser.add_argument('--list-methods', help="list available methods", action="store_true")

The normal command line would be test.py 47.249 -33.282 or test.py 47.249 -33.282 --method sub. But as soon as I call the script with test.py --list-methods to list all available methods, I get error: to few arguments. How can I use argparse to have this optional argument (--list-methods) without having positional arguments (lat, lon)?

link|improve this question
You could add default=None to lat and lon, and then check for None in your code... – wberry Jul 30 '11 at 0:08
1  
Since you don't set nargs it looks like at lot of these are required. Why don't have nave nargs='?' set for the optional arguments? – S.Lott Jul 30 '11 at 0:08
feedback

2 Answers

  • set a default value and nargs='?' for your positional arguments
  • check manually in your code that both latitude and longitude have been set when you're not in list-methods mode

    parser = argparse.ArgumentParser()
    
    parser.add_argument('lat', help="latitude",default=None, nargs='?')
    parser.add_argument('lon', help="longitude",default=None, nargs='?')
    parser.add_argument('--method', help="calculation method (default: add)", default="add")
    parser.add_argument('--list-methods', help="list available methods", action="store_true")
    
    args = vars(parser.parse_args())
    
    if not args['list_methods'] and (args['lat'] == None or args['lon'] == None):
        print '%s: error: too few arguments' % sys.argv[0]
        exit(0)
    
    if args['list_methods']:
        print 'list methods here'
    else :
        print 'normal script execution'
    

which gives :

$ test.py --list-methods
list methods here

$ test.py 4
test.py: error: too few arguments

test.py 4 5
normal script execution

link|improve this answer
feedback

You get error: to few arguments because lat and lon arguments are required.

In [10]: parser.parse_args('--list-methods'.split())
ipython: error: too few arguments

but

In [11]: parser.parse_args('--list-methods 10 20'.split())
Out[11]: Namespace(lat='10', list_methods=True, lon='20', method='add')

You should make lat and lon arguments optional.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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