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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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---爬取网页图片的主要内容,如果未能解决你的问题,请参考以下文章

python3.7 爬取QQ空间好友

Python爬虫学习之正则表达式爬取个人博客

python3爬取网页图片路径并写入文件

python3下爬取网页上的图片的爬虫程序

什么猫咪最受欢迎?Python爬取全网猫咪图片,哪一款是你最爱的

什么猫咪最受欢迎?Python爬取全网猫咪图片,哪一款是你最爱的