在什么情况下urllib2会比IE8慢很多?

时间:2013-08-15 15:39:49

标签: python python-2.7 urllib2

我的代码很简单。

import urllib2

fs = urllib2.urlopen('http://www.abc.com')
ofile = open('output.txt','rb')
for b in fs.read():
  ofile.write(b)
ofile.close()
fs.close()

好。现在我在IDLE中运行程序并直接在IE8中粘贴URL。令人惊讶的是,IE8以比程序快得多的速度返回整个页面。

我想也许我的程序应该更像'浏览器'。虽然我没有在此安装中使用Wireshark,但我可以做些什么来加速我的Python程序?

1 个答案:

答案 0 :(得分:1)

正如我在帖子http://urlgrabber.baseurl.org/

中找到的那样,

Python Better network API than urllib要快得多