# -*- coding: utf-8 -*-import reimport requestsimport time# 读取源代码文档f = file("wenben.txt",'r')html = f.read()f.close()# 匹配图片网址pic_url = re.findall('
wenben.txt为包括图片标签的html代码
遍历并保存。open('pic\\'+str(time.time())+'.png','wb') 保存在pic目录之下
本文共 280 字,大约阅读时间需要 1 分钟。
# -*- coding: utf-8 -*-import reimport requestsimport time# 读取源代码文档f = file("wenben.txt",'r')html = f.read()f.close()# 匹配图片网址pic_url = re.findall('
wenben.txt为包括图片标签的html代码
遍历并保存。open('pic\\'+str(time.time())+'.png','wb') 保存在pic目录之下
转载于:https://my.oschina.net/houzhong/blog/625361