repoman.utils.introspection package¶
Submodules¶
repoman.utils.introspection.dynamic_class_loading module¶
- repoman.utils.introspection.dynamic_class_loading.get_class_from_name(clazz_name)¶
Returns a valid class, if it exists, from a module name + class name.
@param module: str with the name of the module @return: a valid class.
- repoman.utils.introspection.dynamic_class_loading.import_module(name, package=None)¶
Import a module.
The ‘package’ argument is required when performing a relative import. It specifies the package to use as the anchor point from which to resolve the relative import to an absolute import.