import requests
import os
url = "http://img.zcool.cn/community/0117e2571b8b246ac72538120dd8a4.jpg@1280w_1l_2o_100sh.jpg"
root = "D://pics//"
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 ('爬取失败')