網路爬蟲---從千圖網爬取圖片到本地
#圖片爬蟲,從千圖網爬取圖片到本地
import urllib.request
import re
import urllib.error
for i in range(1,10):
pageurl = "https://www.58pic.com/piccate/11-200-0-p"+str(i)+".html"
data = urllib.request.urlopen(pageurl).read().decode('utf-8','ignore')
pat = '<div class="card-trait">.*?src="(.*?)\.jpg!'
imglist = re.compile(pat).findall(data)
for j in range(0,len(imglist)):
try:
thisimg = imglist[j]
thisimgurl = "http:"+thisimg+".jpg!w1024_new_0"
file = "D:/24/"+str(i)+str(j)+".jpg"
urllib.request.urlretrieve(thisimgurl,filename=file)
print("第"+str(i)+"頁第"+str(j)+"個圖片爬取成功")
except urllib.error.URLError as e:
if hasattr(e,'code'):
print(e.code)
if hasattr(e,'reason'):
print(e.reason)
except Exception as e:
print("異常")
相關文章
- node:爬蟲爬取網頁圖片爬蟲網頁
- 【python--爬蟲】千圖網高清背景圖片爬蟲Python爬蟲
- Python爬蟲—爬取某網站圖片Python爬蟲網站
- 最簡單的網路圖片的爬取 --Pyhon網路爬蟲與資訊獲取爬蟲
- python爬蟲---網頁爬蟲,圖片爬蟲,文章爬蟲,Python爬蟲爬取新聞網站新聞Python爬蟲網頁網站
- 爬蟲怎麼根據一個關鍵詞爬取上千張網路圖片爬蟲
- Python資料爬蟲學習筆記(11)爬取千圖網圖片資料Python爬蟲筆記
- Python網路爬蟲2 - 爬取新浪微博使用者圖片Python爬蟲
- Java爬蟲批量爬取圖片Java爬蟲
- python 爬蟲之requests爬取頁面圖片的url,並將圖片下載到本地Python爬蟲
- 蘇寧易購網址爬蟲爬取商品資訊及圖片爬蟲
- 爬蟲 Scrapy框架 爬取圖蟲圖片並下載爬蟲框架
- 爬蟲---xpath解析(爬取美女圖片)爬蟲
- Python3 大型網路爬蟲實戰 003 — scrapy 大型靜態圖片網站爬蟲專案實戰 — 實戰:爬取 169美女圖片網 高清圖片Python爬蟲網站
- 爬蟲第二彈:千圖網電商淘寶模板圖片下載爬蟲
- 簡單的爬蟲:爬取網站內容正文與圖片爬蟲網站
- Python爬蟲入門【4】:美空網未登入圖片爬取Python爬蟲
- Python爬蟲之網頁圖片Python爬蟲網頁
- 自學python網路爬蟲,從小白快速成長,分別實現靜態網頁爬取,下載meiztu中圖片;動態網頁爬取,下載burberry官網所有當季新品圖片。Python爬蟲網頁
- 小小圖片爬蟲爬蟲
- Python爬蟲入門【5】:27270圖片爬取Python爬蟲
- Python爬蟲學習(6): 爬取MM圖片Python爬蟲
- Node JS爬蟲:爬取瀑布流網頁高清圖JS爬蟲網頁
- 使用正則編寫簡單的爬蟲爬取某網站的圖片爬蟲網站
- 教你用Python爬取圖蟲網Python
- Python爬蟲入門【9】:圖蟲網多執行緒爬取Python爬蟲執行緒
- Python爬蟲新手教程: 知乎文章圖片爬取器Python爬蟲
- Python爬蟲實戰詳解:爬取圖片之家Python爬蟲
- Python爬蟲入門-爬取pexels高清圖片Python爬蟲
- Python爬蟲之煎蛋網圖片下載Python爬蟲
- 爬蟲Selenium+PhantomJS爬取動態網站圖片資訊(Python)爬蟲JS網站Python
- 【python--爬蟲】彼岸圖網高清桌布爬蟲Python爬蟲
- python網路爬蟲--爬取淘寶聯盟Python爬蟲
- python爬取網圖Python
- 網路爬蟲爬蟲
- Python爬蟲入門教程 4-100 美空網未登入圖片爬取Python爬蟲
- 新手爬蟲教程:Python爬取知乎文章中的圖片爬蟲Python
- Python爬蟲遞迴呼叫爬取動漫美女圖片Python爬蟲遞迴