python3.7脚本---爬取网页图片-成都创新互联网站建设

关于创新互联

多方位宣传企业产品与服务 突出企业形象

公司简介 公司的服务 荣誉资质 新闻动态 联系我们

python3.7脚本---爬取网页图片

#!/usr/bin/python

import re
import urllib
import urllib.request   #python3中urlopen、urlritrieve都在request库里面了,所以要导入此库

def htmlGet(url):
        page = urllib.request.urlopen(url)
        html = page.read()
        return html

def imgGet(html):
        res = r'src="(https.*?\.jpg)"'
        imgre = re.compile(res)
        imglist = re.findall(imgre,html.decode("utf-8")) #html不加后面的会报错typeerror,因为编码格式的变化,这里需要指定一下
        x = 0
        for i in imglist:
                urllib.request.urlretrieve(i,"%s.jpg" % x)
                x+=1

html = htmlGet("http://***")
imgGet(html)

网页题目:python3.7脚本---爬取网页图片
当前链接:http://kswsj.cn/article/jipidp.html

其他资讯