module_from_path

 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

  1. Integrating Django with ToofPy by Siddhi 5 years, 10 months ago
  2. Download images as png or pdf by gkelly 6 years, 1 month ago
  3. Dynamic Template Loader by jgeewax 4 years, 10 months ago
  4. Copy media files to central location for easier sharing by jtiai 4 years ago
  5. Dynamic import from an installed app by Archatas 4 years, 1 month ago

Comments

(Forgotten your password?)