用Requests库爬取微博照片
用Requests库爬取微博照片
代码如下:
#微博图片爬取
import requests
import os
#文件目录方法模块
url=“https://wx3.sinaimg.cn/mw690/d7f7faddly1g9e5os7facj21400u0gtl.jpg”
root=“D://易烊千玺//”
path= root +url.split(’.’)[-1]
try:
if not os.path.exists(root): #os.path获取文件所属信息
os.mkdir(root) #创建一个文件夹名字是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(“爬取失败”)
结果图: