import requests
import os
url = “http://image.nationalgeographic.com.cn/2017/0211/20170211061910157.jpg”
root = “E://picture//”
path = root + url.split(’/’)[-1] #获取下载图片名
try:
if not os.path.exists(root): #如果文件不存在,新建文件
os.mkdir(root)
if not os.path.exists(path): #如果图片不存在,及下载至本地
r = requests.get(url)
with open(path,‘wb’) as f: #读取文件
f.write(r.content)
f.close()
print(“文件保存成功”)
else:
print(“文件已存在”)
except:
print(“爬取失败”)
Python : requests爬取图片
最新推荐文章于 2024-08-15 21:21:22 发布