import requests
import os
url = 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1541514' \
'667590&di=44f4252c52f09f5b3ed2ab76fe0a4150&imgtype=0&src=http' \
'%3A%2F%2Fi2.hdslb.com%2Fbfs%2Farchive%2F71347a8f8c50a733a6e500476' \
'd61a4d86dae1765.jpg'
root = "C:/Users/10699/Desktop/pic_of_python_get/"
path=root+'megumi.jpg'
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("爬取失败")