helper module
Define generic utility functions.
- get_classes(module_name: str, base_class: ABCMeta) dict[str, str]
In
module_path, get every class inheriting fromclass_type.Used by the GUI to dynamically keep track of the
Loader,ModelandPlotterthat are implemented.- Parameters:
module_name – The name of a module.
base_class – The mother object that classes should inherit from.
- Returns:
Keys are the name of the objects inheriting from
base_classfoundin
module_name. Values are the path leading to them.