1 2 3 4 5 6 7 8 9 10 11 12 13 | import imp, os
def module_from_path(filepath):
dirname, filename = os.path.split(filepath)
mod_name = filename.replace('.py', '')
dot_py_suffix = ('.py', 'U', 1) # From imp.get_suffixes()[2]
return imp.load_module(mod_name, open(filepath), filepath, dot_py_suffix)
"""
Usage:
mod = module_from_path('/path/to/something.py')
mod.function_inside_something()
"""
|
More like this
- Dynamic import from an installed app by Archatas 2 years, 10 months ago
- djangopath: conveniently set sys.path and DJANGO_SETTINGS_MODULE by alia_khouri 3 years, 6 months ago
- Dynamic Template Loader by jgeewax 3 years, 7 months ago
- PyCallTag - Directly call python function or attribute of a module by limodou 4 years, 11 months ago
- cron/console bootstrap django by nstrite 4 years, 5 months ago
Comments