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

python实现简单爬虫--爬图片

时间:2016-12-14 22:23:36      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:爬虫   python   python爬虫   

首先有两个功能需求:

第一:获取到要爬的页面html内容;

第二:使用正则表达式进行匹配并进行保存到本地。

#!/usr/bin/env python
#encoding:utf-8
import urllib
import re
def getHtml(url):
    ‘‘‘获取到url的html内容‘‘‘
    page = urllib.urlopen(url)
    html = page.read()
    return html
html1 = getHtml(‘http://image.baidu.com/search/index?tn=baiduimage&ct=201326592&lm=-1&cl=2&ie=gbk&word=%C3%C0%C5%AE&ala=1&fr=ala&alatpl=cover&pos=0‘)
# print html1
# print re.findall(r‘"objURL":"(.+?\.jpg)"‘,html1)
def downloadImg(html1):
    ‘‘‘下载页面里的jpg图片‘‘‘
    reg = r‘"objURL":"(.+?\.jpg)"‘
    #预编译正则表达式提高运行速度
    imgreg = re.compile(reg)
    urllist = re.findall(imgreg,html1)
    num = 0
    #for循环遍历下载每个图片
    for i in urllist:
        urllib.urlretrieve(i,‘%s.jpg‘ % num)
        num+=1
downloadImg(html1)


本文出自 “song” 博客,请务必保留此出处http://song1230.blog.51cto.com/5595296/1882753

python实现简单爬虫--爬图片

标签:爬虫   python   python爬虫   

原文地址:http://song1230.blog.51cto.com/5595296/1882753

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