data_process_ui/app/util.py

8 lines
225 B
Python
Raw Permalink Normal View History

2026-01-12 09:21:42 +08:00
import importlib.util
def load_module(path):
spec = importlib.util.spec_from_file_location("dynamic_module", path)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
return module