Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
仕事が許す限り、Pythonの周りでまだ私の道を進んでいます...
を使用するスクリプトを使用して、内部webUIの負荷をクエリしていますurllib2.urlopen。各リクエストからページコンテンツのサイズを取得するにはどうすればよいのでしょうか。私はこれを理解できないようです。
urllib2.urlopen
前もって感謝します、
MHibbin
print len(urlopen(url).read())
また
>>> result = urllib2.urlopen('http://www.spiegel.de') >>> result.headers['content-length'] '181291'