首页 > 编程语言 > 详细

Python爬虫示例

时间:2014-05-10 18:39:02      阅读:466      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
 1 #!/usr/bin/python
 2 #coding:utf8
 3 import re
 4 import urllib
 5 
 6 def gethtml(url):
 7     page=urllib.urlopen(url)
 8     html=page.read()
 9     return html
10 
11 def getimg(html):
12     reg=r<img src="(http.*?\.gif)" alt
13     imgre=re.compile(reg)
14     imglist=re.findall(imgre,html)
15     ii=0
16     for imgimg in imglist:
17         urllib.urlretrieve(imgimg,%s.jpg % ii)
18         ii+=1
19 
20 aa=gethtml(http://www.126.com)
21 print getimg(aa)
View Code

 

Python爬虫示例,布布扣,bubuko.com

Python爬虫示例

原文:http://www.cnblogs.com/wjoyxt/p/3720040.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!