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

python写的简单有效的爬虫代码

时间:2014-08-18 16:28:52      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:python   爬虫   

python写的简单有效的爬虫代码

by 伍雪颖

import re
import urllib
                                 
def getHtml(url):
        html = urllib.urlopen(url)
        scode = html.read()
        return scode
                                 
def getImage(source):
        reg = r'src="(.*?\.jpg)"'
        imgre = re.compile(reg)
        images = re.findall(imgre,source)
        x = 0
        for i in images:
                urllib.urlretrieve(i,'%s.jpg' % x)
                x+=1
                                 
source = getHtml('http://tieba.baidu.com/p/3237470549')
print getImage(source)


python写的简单有效的爬虫代码,布布扣,bubuko.com

python写的简单有效的爬虫代码

标签:python   爬虫   

原文地址:http://blog.csdn.net/rainlesvio/article/details/38660987

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