最簡單的網路圖片的爬取 --Pyhon網路爬蟲與資訊獲取

Claire_ljy發表於2020-04-04

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

桌面上自動新建的資料夾:

轉載於:https://www.cnblogs.com/qikeyishu/p/9354868.html

相關文章