重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

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://cqcxhl.com/article/jipidp.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP