实例4.爬取图片
import requests
import os
url="http://t1.niutuku.com/960/35/35-82516.jpg"
root="D://"
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()
peint("文件保存成功")
else:
print("文件已存在")
except:
print("爬取失败")