data.py
author Tero Marttila <terom@fixme.fi>
Thu, 02 Apr 2009 21:11:01 +0300
changeset 3 ff98fa9b84ce
parent 2 e66102ab7048
permissions -rw-r--r--
implement comments properly
"""
    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)