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

使用Python实现网站图片抓取

时间:2018-07-02 11:49:09      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:环境   col   cto   ima   html   src   findall   time   抓取   

1,Python环境

技术分享图片

2,下面直接编写代码

import urllib
import re
import time

def getHtml(url):
page = urllib.urlopen(url)
html = page.read()
html = html.decode(‘utf-8‘)
return html

def getImgUrl(html):
str_re = r‘<img[^>]src[=\"\‘]+([^\"\‘])[\"\‘][^>]*>‘
imgre = re.compile(str_re,re.I)
imglist = re.findall(imgre,html)
for i in imglist:
urllib.urlretrieve(i,‘/mnt/test/‘+str(time.time())+".jpg")

#last setup is invocation and test it

html = getHtml(‘http://xxx.xxx.xxx‘)
getImgUrl(html)

使用Python实现网站图片抓取

标签:环境   col   cto   ima   html   src   findall   time   抓取   

原文地址:http://blog.51cto.com/13718210/2134963

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