1. 程式人生 > >requests筆記4---網路圖片爬取及儲存

requests筆記4---網路圖片爬取及儲存

【Python網路爬蟲與資訊提取】.MOOC. 北京理工大學

import requests
import os

url = 'jpg_url'
root = r'D:/pic/'
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()
            print('檔案儲存成功')
    else:
        print('檔案己存在')
except:
    print('爬取失敗')