File size: 232 Bytes
3505899
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import importlib

def execute_function():
    module = "output"
    function = "extract_info"
    module = importlib.import_module(module)
    function = getattr(module, function)
    print("returning function")
    return function