python3 简单抓取图片2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 简单抓取图片2相关的知识,希望对你有一定的参考价值。
import urllib.request
import re
response = urllib.request.urlopen("http://tieba.baidu.com/p/2460150866")
page = response.read()
page = page.decode(‘utf-8‘)
imageList = re.findall(r‘src="(.*?\.(jpg|png))" pic_ext‘,page)
j = 1
for i in imageList:
imgUrl = i[0]
urllib.request.urlretrieve(imgUrl,‘./images/%d.jpg‘%j)
j += 1
以上是关于python3 简单抓取图片2的主要内容,如果未能解决你的问题,请参考以下文章