码迷,mamicode.com
首页 > 编程语言 > 详细

Python爬虫示例

时间:2014-05-10 18:39:47      阅读:399      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   color   

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爬虫示例

标签:style   blog   class   code   tar   color   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!