mitk.get_loaded_modules#
- mitk.get_loaded_modules() list[str]#
Return the names of all currently loaded CppMicroServices modules.
In the standalone wheel, this is the list of MITK modules whose auto-load shared libraries have been loaded by the CppMicroServices runtime (typically IO readers/writers and similar plug-in services).
- Returns:
A list of module name strings.
Examples
>>> for name in mitk.get_loaded_modules(): ... print(name)