OptionParser is main class to parse options.
Definition at line 4 of file bookConverter.py.
def bookConverter.OptionParser.__init__ |
( |
|
self | ) |
|
Definition at line 8 of file bookConverter.py.
9 optparse.OptionParser.__init__(self, usage=
"%prog --help or %prog [options] file", version=
"%prog 0.0.1", conflict_handler=
"resolve")
10 self.add_option(
"--src", action=
"store", type=
"string", dest=
"src", help=
"specify source XML file")
11 self.add_option(
"--min", action=
"store", type=
"int", dest=
"min", help=
"Minimum length to measure")
12 self.add_option(
"--max", action=
"store", type=
"int", dest=
"max", help=
"Maximum length to measure")
13 self.add_option(
"--cid", action=
"store", type=
"int", dest=
"cid", help=
"Apply combination ID")
14 self.add_option(
"--xsd", action=
"store_true", dest=
"xsd", help=
"Create XML Schema fragment")