最简单的网络图片的爬取 --Pyhon网络爬虫与信息获取

Posted qikeyishu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最简单的网络图片的爬取 --Pyhon网络爬虫与信息获取相关的知识,希望对你有一定的参考价值。

1、本次要爬取的图片url

http://www.nxl123.cn/static/imgs/php.jpg

技术分享图片

2、代码部分

import requests
import os
url = "http://www.nxl123.cn/static/imgs/php.jpg"
root = "C:/Users/Niuxi/Desktop/pic/"#注意最后“/”带上
path = root+url.split(‘/‘)[-1]
try:
if not os.path.exists(root):
os.makedirs(root)
if not os.path.exists(path):
r = requests.get(url)
# print(r.status_code)
with open(path,‘wb‘) as f:
f.write(r.content)
f.close()
print("文件保存成功")
else:
print("文件已经存在");
except:
print("爬取失败!")

3、打印结果

技术分享图片

桌面上自动新建的文件夹:

技术分享图片

以上是关于最简单的网络图片的爬取 --Pyhon网络爬虫与信息获取的主要内容,如果未能解决你的问题,请参考以下文章

简单的爬取网页图片

验证码的爬取和识别详解

web scraper——简单的爬取数据

requests实例4:图片的爬取与保存

简单的爬取(不分析模式的源码爬取

不用正则表达式,爬取斗图啦