MCPcopy Index your code
hub / github.com/qilingframework/qiling / ql_get_module

Function ql_get_module

qiling/utils.py:71–77  ·  view source on GitHub ↗
(module_name: str)

Source from the content-addressed store, hash-verified

69
70
71def ql_get_module(module_name: str) -> ModuleType:
72 try:
73 module = importlib.import_module(module_name, 'qiling')
74 except (ModuleNotFoundError, KeyError):
75 raise QlErrorModuleNotFound(f'Unable to import module {module_name}')
76
77 return module
78
79
80def ql_get_module_function(module_name: str, member_name: str):

Callers 2

__get_os_moduleMethod · 0.90
ql_get_module_functionFunction · 0.85

Calls 1

Tested by

no test coverage detected