Mercurial > hg > config
view python/require.py @ 181:7f594703d75e
add trailing whitespace thingy
| author | Jeff Hammel <jhammel@mozilla.com> | 
|---|---|
| date | Mon, 14 Nov 2011 11:55:15 -0800 | 
| parents | 09c748a71b1b | 
| children | 691b508084f1 | 
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 = tempfile.mkstemp(suffix='.py', prefix=module) f = file(dest, 'w') f.write(contents) f.close() return imp.load_source(module, dest) # TODO: make an equivalent method for a tarball
