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)?
nargsit looks like at lot of these are required. Why don't have navenargs='?'set for the optional arguments? – S.Lott Jul 30 '11 at 0:08