码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-07-23 15:55:32      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:cep   网络图   exists   爬取   网络爬虫   rom   makedirs   --   保存   

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网络爬虫与信息获取

标签:cep   网络图   exists   爬取   网络爬虫   rom   makedirs   --   保存   

原文地址:https://www.cnblogs.com/qikeyishu/p/9354868.html

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