Skip to content

Instantly share code, notes, and snippets.

@michaelcoyote
Last active February 9, 2017 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelcoyote/3a6c16a6e1bfbe91559f32c5f5d6472b to your computer and use it in GitHub Desktop.
Save michaelcoyote/3a6c16a6e1bfbe91559f32c5f5d6472b to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
"""Test shared argparse vars.
The question came up if there was way to share a var within an exclusive
argeparse group to make for a slightly cleaner test of variables.
This example has expanded to include some non-exclusive shared vars."""
import argparse
import pprint
def test_xclusive(xclusive):
if xclusive == 'aaaaa':
print "the a's have it"
elif xclusive == 'bbbbb':
print "it be"
def test_grouparg(share_def):
foo = 0
if 'd' in share_def:
foo += 1
print 'd',
if 'e' in share_def:
print 'e',
foo += 2
if 'f' in share_def:
print 'f'
foo += 4
print foo
def build_parser():
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument(
'-x',
'--example',
help='test example',
action='store_true',
dest='xample',
default=False)
nonexclusive_group = parser.add_argument_group('nonexclusive',
'Pick d,e, and/or f')
# A shared var example w/o groups. Set the dest and the action of
# append_const will push the const to that name.
nonexclusive_group.add_argument(
'-d',
help='opt d',
const='d',
action='append_const',
dest='sdef')
nonexclusive_group.add_argument(
'-e',
help='opt e',
const='e',
action='append_const',
dest='sdef')
nonexclusive_group.add_argument(
'-f',
help='opt f',
const='f',
action='append_const',
dest='sdef')
exclusive_group = parser.add_mutually_exclusive_group()
# Set the dest the same across the two arguments,
# then use the action `store_const` to push the contents
# of const to the shared dest.
exclusive_group.add_argument(
'-a',
help='exclusive example a',
action='store_const',
const='aaaaa',
dest='xclusive')
exclusive_group.add_argument(
'-b',
help='exclusive example b',
action='store_const',
const='bbbbb',
dest='xclusive')
return parser
if __name__ == '__main__': # pragma: no cover
parser = build_parser()
args = parser.parse_args()
pprint.pprint(args)
if not args.sdef:
sdef = ['d', 'e', 'f']
else:
sdef = args.sdef
test_xclusive(xclusive=args.xclusive)
test_grouparg(share_def=sdef)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment