您好,登錄后才能下訂單哦!
一:使用Python中的urllib類中的urlretrieve()函數,直接從網上下載資源到本地,具體代碼:
import os,stat import urllib.request img_url="https://cache.yisu.com/upload/information/20200622/113/35258.html" file_path='D:/book/img' file_name ="pyt" try: #是否有這個路徑 if not os.path.exists(file_path): #創建路徑 os.makedirs(file_path) #獲得圖片后綴 file_suffix = os.path.splitext(img_url)[1] print(file_suffix) #拼接圖片名(包含路徑) filename = '{}{}{}{}'.format(file_path,os.sep,file_name,file_suffix) print(filename) #下載圖片,并保存到文件夾中 urllib.request.urlretrieve(img_url,filename=filename) except IOError as e: print("IOError") except Exception as e: print("Exception")
二:利用讀寫操作寫入文件,具體代碼:
import os,stat import urllib.request for i in range(1,3): if not os.path.exists("./rym"): print("不純在") os.makedirs("./rym") else: print("存在") os.chmod("D:/imagss",777) with urllib.request.urlopen("https://cache.yisu.com/upload/information/20200622/113/35259.html", timeout=30) as response, open("./rym/lyj.png" , 'wb') as f_save: f_save.write(response.read()) f_save.flush() f_save.close() print("成功")
以上所述是小編給大家介紹的Python下載圖片并保存本地的兩種方式詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。