Mercurial > hg > config
view python/require.py @ 501:f9a4e1572b54
add http://pietrushnic.blogspot.com/2012/02/arbtt-as-productivity-improver-for.html#.Uh_LB5WZi1E
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 29 Aug 2013 15:36:08 -0700 |
parents | 691b508084f1 |
children |
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)[0] 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