python:optparse
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
python:optparse [2010/03/15 12:11] – tkbletsc | python:optparse [2011/06/05 17:40] (current) – tkbletsc | ||
---|---|---|---|
Line 8: | Line 8: | ||
} | } | ||
parser = OptionParser(" | parser = OptionParser(" | ||
+ | |||
+ | # uncomment if you need to ignore options after the first argument, e.g. " | ||
+ | # parser.disable_interspersed_args() | ||
parser.add_option(" | parser.add_option(" | ||
Line 25: | Line 28: | ||
if options.verbose: | if options.verbose: | ||
else: | else: | ||
+ | </ | ||
+ | |||
+ | Shorter: | ||
+ | < | ||
+ | from optparse import OptionParser | ||
+ | |||
+ | parser = OptionParser(" | ||
+ | |||
+ | parser.add_option(" | ||
+ | parser.add_option(" | ||
+ | parser.add_option(" | ||
+ | parser.add_option(" | ||
+ | |||
+ | (options, args) = parser.parse_args() | ||
+ | |||
+ | if (len(args)< | ||
+ | parser.print_help() | ||
+ | sys.exit(0) | ||
+ | |||
</ | </ |
python/optparse.1268680261.txt.gz · Last modified: 2010/03/15 12:11 by tkbletsc