pvl/config/data.py
author Tero Marttila <terom@fixme.fi>
Sun, 12 Jul 2009 02:14:34 +0300
changeset 9 2156906bfbf1
parent 7 0f9cae2d7147
permissions -rw-r--r--
reorganize modules into packages
"""
    Functions to load data from various sources
"""

import imp

def load_py (name, path) :
    """
        Load a python file from the given filesystem path, returning the module itself.

        The "name" of the module must be given, it should be something sane and unique...
    """

    # just load it and return
    return imp.load_source(name, path)