Spaces:
Sleeping
Sleeping
File size: 237 Bytes
e75a247 |
1 2 3 4 5 6 7 8 9 |
from importlib.util import spec_from_file_location, module_from_spec
def import_module(path, name='_mod'):
spec = spec_from_file_location(name, path)
mod = module_from_spec(spec)
spec.loader.exec_module(mod)
return mod
|