File size: 236 Bytes
cc0720f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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