User Tools

Site Tools


python:optparse

This is an old revision of the document!


things = {
        'this_thing': this,
        'that_thing': that,
        'the_other': get_the_other(),
}
parser = OptionParser("Usage: %prog [options] <files ...>")
 
parser.add_option("-n", "--number", dest="number", help="Quantity of things", metavar="NUM", type="int")
parser.add_option("-h", "--host", dest="hostname", help="Hostname. Default: %default", metavar="HOST", default="localhost")
parser.add_option("-s", "--sort", dest="sort", help="Sort by the given key.  One of: length,name.", metavar="KEY", type="choice", choices=['length','name'])
parser.add_option("-v", "--verbose", dest="verbose", help="Print extra info.", action="store_true")
parser.add_option("-t", "--thing", dest="thing", help="What are we looking for?  One of %s." % targets.keys(), type="choice", choices=targets.keys(), default="this_thing")
 
(options, args) = parser.parse_args()
 
if (len(args)<=0):
        parser.print_help()
        sys.exit(0)
 
num = options.number
thing = things[option.thing]
if options.verbose: verbose_write = lambda s: sys.stderr.write(s)
else:               verbose_write = lambda s: 0
python/optparse.1268679908.txt.gz · Last modified: 2010/03/15 12:05 by tkbletsc

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki