您能告诉我如何编写从外部服务器读取文件的Python脚本吗?我寻找类似于PHP的file_get_contents()或file()函数的东西。
如果有人可以发布这样一个脚本的整个代码,那就太好了。
提前致谢!
答案 0 :(得分:12)
整个脚本是:
import urllib
content = urllib.urlopen('http://www.google.com/').read()
答案 1 :(得分:5)
更好的是与Jarret的代码相同,但使用urllib2:
import urllib2
content = urllib2.urlopen('http://google.com').read()
urllib2更新,更现代。在你的情况下无关紧要,但使用它是一种好习惯。