Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been using argparse for a Python program that can -prepare, -upload or both:

parser = argparse.ArgumentParser(description='Log archiver arguments.')
parser.add_argument('-process', action='store_true')
parser.add_argument('-upload',  action='store_true')
args = parser.parse_args()

The program is meaningless without at least one parameter. How can I configure argparse to force at least one parameter to be chosen?

UPDATE:

Following the comments: What's the Pythonic way to parametrize a program with at least one option?

share|improve this question
4  
-x is universally a flag and optional. Cut the - if it's required. – delnan Jul 17 '11 at 9:27
Couldn't you make process the default behavior (without the need to specify any options) and allow the user to change that into upload if that option is set? Usually, options should be optional, hence the name. Required options should be avoided (this is also in the argparse docs). – Tim Pietzcker Jul 17 '11 at 9:32

3 Answers

up vote 11 down vote accepted
if not (args.process or args.upload):
    parser.error('No action requested, add -process or -upload')
share|improve this answer
That's probably the only way, if argparse has no built-in option for this. – Adam Matan Jul 17 '11 at 10:29

If not the 'or both' part (I have initially missed this) you could use something like this:

parser = argparse.ArgumentParser(description='Log archiver arguments.')
parser.add_argument('--process', action='store_const', const='process', dest='mode')
parser.add_argument('--upload',  action='store_const', const='upload', dest='mode')
args = parser.parse_args()
if not args.mode:
    args.error("One of --process or --upload must be given")

Though, probably it would be a better idea to use subcommands instead.

share|improve this answer
2  
I think he wants to allow --process OR --upload, not XOR. This prevents both options from being set at the same time. – phihag Jul 17 '11 at 9:54
+1 because you mentioned subcommands. Yet - as somebody pointed in the comments -x and --xxx are typically optional parameters. – mac Jul 17 '11 at 9:56
@phihag: you are right, I misread the question. – Jacek Konieczny Jul 17 '11 at 9:57
args = vars(parser.parse_args())
if not any(args.values()):
    parser.error('No arguments provided.')
share|improve this answer
+1 for a generalized solution. Also like the use of vars(), which is also useful for passing carefully-named options to a constructor with **. – Lenna Mar 10 at 14:57
Which is exactly what I'm doing with it. Thanks! – brentlance Mar 11 at 18:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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