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的主要内容,如果未能解决你的问题,请参考以下文章

Python3简单爬虫抓取网页图片

Python3抓取百度贴吧图片

python3 抓取图片

python3用BeautifulSoup抓取图片地址

python3 基于zabbix 自动抓取监控图片

python3抓取异步百度瀑布流动态图片getjson下载代码讲解