Here is an example code:

import argparse

parser=argparse.ArgumentParser()
parser.add_argument('-main_arg')
subparser=parser.add_subparser()
a=subparser.add_parser('run')
a.add_argument('required_sub_arg')
a.add_argument('arg_a')
b=subparser.add_parser('b')
parser.parse_args()

I want it to read in -main_arg if I enter program run required_sub_arg -main_arg -arg_a

Right now, it doesn't recognize -main_arg as a valid argument.

link|improve this question

62% accept rate
Is main-arg meant to be an argument to the main parser or the subparser? – katrielalex Aug 15 '11 at 15:46
main-arg is an argument that can be used in any subparser – user e to the power of 2pi Aug 15 '11 at 16:05
feedback

1 Answer

up vote 5 down vote accepted

As is, you have a few issues.

First, parser.parse_args is a method that returns a namespace of parser's arguments, so you should do something like

args = parser.parse_args()

Then args.main_args to get-main_arg from a call like

program -main_arg run required_sub_arg -arg_a

Your issue with main_arg is that you have created a argument to parser named main_arg, and you make a call like

program run required_sub_arg -main_arg -arg_a

that refers to an argument to a named main_arg. Since a doesn't have such an argument, it is invalid.

In order to refer to a parser's argument from one of its subparser, you have to make said subparser inherit the arguments of its parent. This is done with

a=parser.add_subparser('run', parents=[parser])

You have mistaken subparser for child parser. See http://docs.python.org/dev/py3k/library/argparse.html and https://code.google.com/p/argparse/issues/detail?id=54 for more informations.

link|improve this answer
Running code I put above returns an error, saying that -main_arg is not a valid argument. Do I need 'parents=[parser]' then? I can do things like, program -main_arg run required_sub_arg -arg_a but cannot, program run required_sub_arg -main_arg -arg_a – user e to the power of 2pi Aug 15 '11 at 16:16
I've edited the answer to make the issue more obvious. – Evpok Aug 15 '11 at 16:29
So, what add_subparser do is basically create a new ArgumentParser. And when parse_arg is called, it parses the arguments of both the subparser and the original parser? What if 2 subcommands are called simultaneously? – user e to the power of 2pi Aug 15 '11 at 16:39
as far as I know, you can't call sibling subcommands simultaneously, but give it a try, one never try enough :) For more details, I suggest docs.python.org/dev/py3k/library/argparse.html#sub-commands – Evpok Aug 15 '11 at 16:48
feedback

Your Answer

 
or
required, but never shown

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