How do I exexcute python script found on a website?
For e.g. following seems to work. But is it the right way?
curl http://www.ics.uci.edu/~eppstein/PADS/UnionFind.py | python
I will like to know if I can import a webpage from python command prompt >>>
Well, you can do:
Though, if you were really doing this, it would certainly make more sense to either
wgetorcurlit to your local machine and then just import the module normally.