Need to figure out a way to turn mutually exclusive options from StructOpt into someting I can select at runtime. In Python I can do this using argparse and then testing existance on the option something like this:
if args.argument1:
thing(args.argument1)
else if args.argument2:
otherthing(args.argument2)