|
__init__(self,
module_path)
Construct a ModuleLoader and will load all available python
modules from @module_path.
|
|
__load_module(self,
module)
Load a python module named @module.
|
|
__load_modules(self)
Load all available modules from self.module_path.
|
|
__construct_object(self,
module,
constructor,
arg)
Construct an object by invoking a function named @constructor,
with @arg as an argument, in the module called @module.
|
|
construct_objects(self,
constructor,
arg)
Construct and return a list of objects by invoking a function
named @constructor, with @arg as an argument, in each of the python
modules in self.module_path which contain a function by that
name.
|