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. Dynamic import from an installed app by Archatas 2 years, 10 months ago
  2. djangopath: conveniently set sys.path and DJANGO_SETTINGS_MODULE by alia_khouri 3 years, 6 months ago
  3. Dynamic Template Loader by jgeewax 3 years, 7 months ago
  4. PyCallTag - Directly call python function or attribute of a module by limodou 4 years, 11 months ago
  5. cron/console bootstrap django by nstrite 4 years, 5 months ago

Comments

(Forgotten your password?)