不需要像bobince那样放到httplib。您可以直接使用urllib进行所有 *** 作:
>>> import urllib2>>> f = urllib2.urlopen("http://dalkescientific.com")>>> f.headers.items()[('content-length', '7535'), ('accept-ranges', 'bytes'), ('server', 'Apache/2.2.14'), ('last-modified', 'Sun, 09 Mar 2008 00:27:43 GMT'), ('connection', 'close'), ('etag', '"19fa87-1d6f-447f627da7dc0"'), ('date', 'Wed, 28 Oct 2009 19:59:10 GMT'), ('content-type', 'text/html')]>>> f.headers["Content-Length"]'7535'>>>
如果使用httplib,则可能必须实现重定向处理,代理支持以及urllib2为您提供的其他好处。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)