Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 >>>

share|improve this question
2  
umm this seems awfully dangerous ... I mean someone could just intercept the request and place their own python script to do something rather unsightly ... – samy.vilar Aug 18 '12 at 6:45

2 Answers

up vote 3 down vote accepted

Well, you can do:

>>> exec(urllib2.urlopen('http://www.ics.uci.edu/~eppstein/PADS/UnionFind.py').read())
>>> uf = UnionFind()

Though, if you were really doing this, it would certainly make more sense to either wget or curl it to your local machine and then just import the module normally.

$ wget http://www.ics.uci.edu/~eppstein/PADS/UnionFind.py

>>> from UnionFind import UnoinFind
>>> uf = UnionFind()
share|improve this answer
The first solution seems better since it will work on both, windows and Linux. – shantanuo Aug 18 '12 at 5:52
Remember you have a huge security liability here. Any code that gets served from the URL will be executed as part of your application (or make your program behave differently if the download fails). Also, the second approach doesn't have to be executed every time - you can just download the file and pack it together with your application (if the license allows that) – rbanffy Aug 18 '12 at 20:40

The Python interpreter cannot download scripts by itself, so using a tool such as curl is an acceptable solution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.