Option Parser
Slots
usageThe program usage message that will printed out if
parse_args()finds a help option,\%progis substituted with the value of theprogargument.optionsA list of of
OptionParserOptioninstances that will define howparse_args()reacts to command line options.OptionParserOptioninstances are usually created bymake_option()and can also be added to an existingOptionParserinstance via theadd_option()function.descriptionAdditional text for
print_help()to print out between usage statement and options statementepilogueAdditional text for
print_help()to print out after the options statementformatterA function that
print_help()will use to print out after the options statement. Default isIndentedHelpFormatter(). This package also provides the builtin formatterTitledHelpFormatter().