1. 程式人生 > >最簡單的網絡圖片的爬取 --Pyhon網絡爬蟲與信息獲取

最簡單的網絡圖片的爬取 --Pyhon網絡爬蟲與信息獲取

文件 spa lose man spl roo () pen image

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、打印結果

技術分享圖片

桌面上自動新建的文件夾:

技術分享圖片

最簡單的網絡圖片的爬取 --Pyhon網絡爬蟲與信息獲取