9

只要工作允许,我仍在以我的方式围绕 python 工作......

我正在使用使用urllib2.urlopen. 我想知道如何从每个请求中获取页面内容的大小。我似乎无法弄清楚这一点。

提前致谢,

米宾

4

1 回答 1

19
print len(urlopen(url).read())

或者

>>> result = urllib2.urlopen('http://www.spiegel.de')
>>> result.headers['content-length']
'181291'
于 2012-09-07T11:51:54.537 回答