view python/require.py @ 165:2269e680a0be

fix weird quoting issue that just started happening
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 02 Sep 2011 11:20:47 -0700
parents f145d7b1fbf7
children 09c748a71b1b
line wrap: on
line source

def require(url):
    """
    import a module from the web
    url should be like scheme://host.name/path/to/module.py
    """
    import imp
    import os
    import tempfile
    import urllib2
    contents = urllib2.urlopen(url).read()
    filename = url.rsplit('/', 1)[-1]
    module = filename.rsplit('.', 1)[-1]
    dest = os.path.join(tempfile.gettempdir(), filename)
    f = file(dest, 'w')
    f.write(contents)
    f.close()
    return imp.load_source(module, dest)

# TODO: make an equivalent method for a tarball