1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
| import argparse args = "-f hello.txt -n 1 2 3 -x 100 -y b -z a -q hello @args.txt i_am_bar -h".split()
parser = argparse.ArgumentParser(description="This is a description of %(prog)s", epilog="This is a epilog of %(prog)s", prefix_chars="-+", fromfile_prefix_chars="@", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument("-f", "--file", help="test test test")
parser.add_argument("bar", help="test test test")
parser.add_argument("-n", "--num", nargs="+", type=int)
parser.add_argument("+g", "++gold", help="test test test", default="test_gold")
parser.add_argument("-x", type=int)
parser.add_argument("-y", choices=['a', 'b', 'd'])
parser.add_argument("-z", choices=['a', 'b', 'd'], required=True)
parser.add_argument("-o", metavar="OOOOOO")
parser.add_argument("-q", dest="world")
args = parser.parse_args(args)
print args
|