1、本次要爬取的圖片的url
http://www.nxl123.cn/static/imgs/php.jpg
2、程式碼部分
import requests
import os
url = "http://www.nxl123.cn/static/imgs/php.jpg"
root = "C:/Users/Niuxi/Desktop/pic/"#注意最後“/”帶上
path = root+url.split('/')[-1]
try:
if not os.path.exists(root):
os.makedirs(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("爬取失敗!")
3、列印結果
桌面上自動新建的資料夾: