I have the following example setup:
|-- main_script.py
`-- module
|-- __init__.py
`-- submodule.py
where the contents of main_script are:
import optparse
import module
parser = optparse.OptionParser()
group = optparse.OptionGroup("submodules options")
group.add_option("","--main_script.bar", dest="bar", action="store_true")
parser.add_option_group(group)
opts,args = parser.parse_args()
if opts.bar:
print ("Bar")
and the contents of submodule.py are:
import optparse
parser = optparse.OptionParser()
group = optparse.OptionGroup(parser, "submodules options")
group.add_option("","--module.submodule.foo", dest="foo", action="store_true")
parser.add_option_group(group)
opts,args = parser.parse_args()
if opts.foo:
print ("Foo")
Since main_script imports submodule the parse_args from submodule is the called. Is there anyway to combine these instances of OptionParser and raise an error if there are option conflicts?
The easiest way is to break your logic into functions. You should not execute logic at the global module scope in the first place, but use a
if name == "__main__"
wrapper construct.You could define a function
add_options(parser)
to each module that must define options, and call this at the root level before callingparse_args
: