Mercurial > hg > config
view python/require.py @ 926:f1168a3417d2 default tip
rm old email
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 04 Mar 2025 10:21:18 -0800 |
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