码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-04-22 00:19:23      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:www   html   def   dal   获取网页   www.   写入   方式   find   

import re
import urllib.request

# 获取网页文件
def getHtml(url):
response = urllib.request.urlopen(‘https://www.zhipin.com/?ka=header-home‘);
return response.read();

# 写入数据到文件
def writeFile(fileName,data):
# 打开文件方式为‘a‘可不覆盖原有数据
htmlFile = open(fileName, ‘a‘);
htmlFile.write(data);
htmlFile.close();

# 截取后缀为.jpg的图片
def getImgSrc(fileName):
# decode()将string转为byte
imgUrl = re.findall(r‘https:.+\.jpg‘,fileName.decode(‘utf-8‘));
return imgUrl;

html = getHtml(‘https://www.imooc.com/‘);
print(html);

imgUrl = getImgSrc(html);
for i in imgUrl:
print(i);
writeFile(‘imgUrl.txt‘, i);

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

标签:www   html   def   dal   获取网页   www.   写入   方式   find   

原文地址:https://www.cnblogs.com/mxh-java/p/10747808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!