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?
-xis universally a flag and optional. Cut the-if it's required. – delnan Jul 17 '11 at 9:27processthe default behavior (without the need to specify any options) and allow the user to change that intouploadif that option is set? Usually, options should be optional, hence the name. Required options should be avoided (this is also in theargparsedocs). – Tim Pietzcker Jul 17 '11 at 9:32