I like the idea of GitHub Gists. That's where I, and many others, keep their tiny but handy Python modules. It would be nice to be able to directly import them to Python. Something like this:
import gist(url) as myModule
Is this possible? Is the only way just to extract the text from the gist and run eval
on it?