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
- Integrating Django with ToofPy by Siddhi 5 years, 11 months ago
- Download images as png or pdf by gkelly 6 years, 2 months ago
- Dynamic Template Loader by jgeewax 4 years, 11 months ago
- Copy media files to central location for easier sharing by jtiai 4 years, 1 month ago
- Dynamic import from an installed app by Archatas 4 years, 2 months ago
Comments