python urllib2模块抓取数据信息

发布时间:2020-09-23编辑:脚本学堂
python urllib2模块抓取网站信息的代码,urllib2模块用法,简单抓取网站信息并输出内容,感兴趣的朋友参考下。

python/urllib2/ target=_blank class=infotextkey>python urllib2模块抓取信息的代码
 

复制代码 代码示例:

#!/usr/bin/env python
#

urlfile = urllib2.urlopen('http://www.plcxue.com/')
print "Document type is", urlfile.info().getheader("Content-Type","")
#输出:Document type is text/html
 
print "HTTP Response headers:"
print urlfile.info()
#输出:
#Document type is Date: Thu, 23 Mar 2006 15:13:29 GMT
#Content-Type: text/html; charset=iso-8859-1
#Server: apache
#X-Powered-By: PHP/5.1.2-1.dotdeb.2
#Connection: close