亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何爬取網站動漫圖片

發布時間:2021-11-25 14:10:19 來源:億速云 閱讀:222 作者:小新 欄目:大數據

這篇文章將為大家詳細講解有關Python如何爬取網站動漫圖片,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

正文

目標網站 https://divnil.com

首先看看這網站是怎樣加載數據的;打開網站后發現底部有下一頁的按鈕,ok,爬這個網站就很簡單了;

我們目標是獲取每張圖片的高清的源地址,并且下載圖片到桌面;先隨便打開一張圖片看看詳細;emmm,只有一張圖

看起來還挺清晰的,單擊新窗口打開圖片

Python如何爬取網站動漫圖片

然后下載圖片,說實話,這圖片很小,我很擔心不是高清原圖(管他的);

接著分析我們從何入手

1、先去主頁面獲取每個圖片的詳細頁面的鏈接

這鏈接還是比較好獲取的,直接 F12 審核元素,或者右鍵查看代碼,手機上chrome和firefox在url前面加上 "view-source"

比如: view-source:https://www.baidu.com/

Python如何爬取網站動漫圖片


2、從詳細頁面獲取圖片大圖地址
隨便打開一個圖片詳細頁面如圖:

Python如何爬取網站動漫圖片


接著只需要單擊網頁上的圖片就能定位到代碼了:

3、用大圖地址下載該圖片

這個很簡單,看代碼

先安裝 Requests 和 BeautifulSoup 庫

pip install requests bs4

導入庫

import requestsfrom bs4 import BeautifulSoupimport sys

請求獲取網頁源代碼

url = "https://divnil.com/wallpaper/iphone8/%E3%82%A2%E3%83%8B%E3%83%A1%E3%81%AE%E5%A3%81%E7%B4%99_2.html"
headers = {
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0",
}
resp = requests.get(url, headers=headers)
if resp.status_code != requests.codes.OK:
print("Request Error, Code: %d"% resp.status_code)
sys.exit()

然后解析出所有圖片的詳細地址

soup = BeautifulSoup(resp.text, "html.parser")
contents = soup.findAll("div", id="contents")[0]
wallpapers = contents.findAll("a", rel="wallpaper")
links = []
for wallpaper in wallpapers:
 links.append(wallpaper['href'])

接著在詳細網頁里獲取那個看似高清的圖片的不確定是否為真實圖片鏈接并下載(/滑稽)

import os

head = "https://divnil.com/wallpaper/iphone8/"
if os.path.exists("./Divnil") != True:
 os.mkdir("./Divnil")

for url in links:
 url = head + url
 resp = requests.get(url, headers=headers)
 if  resp.status_code != requests.codes.OK:
   print("URL: %s REQUESTS ERROR. CODE: %d" % (url, resp.status_code))
   continue
 soup = BeautifulSoup(resp.text, "html.parser")
 img =  soup.find("div", id="contents").contents.find("img", id="main_content")
 img_url = head + img['"original'].replace("../", "")
 img_name = img['alt']
 print("start download %s ..." % img_url)

 resp = requests.get(img_url, headers=headers)
 if resp.status_code != requests.codes.OK:
   print("IMAGE %s DOWNLOAD FAILED." % img_name)

 with open("./Divnil/" + img_name + ".jpg", "wb") as f:
   f.write(resp.content)

完成,貼上所有代碼

import requests
from bs4 import BeautifulSoup
import sys
import os


class Divnil:

   def __init__(self):
       self.url = "https://divnil.com/wallpaper/iphone8/%E3%82%A2%E3%83%8B%E3%83%A1%E3%81%AE%E5%A3%81%E7%B4%99.html"
       self.head = "https://divnil.com/wallpaper/iphone8/"
       self.headers = {
           "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0",
       }
   

   def getImageInfoUrl(self):

       resp = requests.get(self.url, headers=self.headers)
       if resp.status_code != requests.codes.OK:
           print("Request Error, Code: %d"% resp.status_code)
           sys.exit()

       soup = BeautifulSoup(resp.text, "html.parser")
       
       contents = soup.find("div", id="contents")
       wallpapers = contents.findAll("a", rel="wallpaper")
       
       self.links = []
       for wallpaper in wallpapers:
           self.links.append(wallpaper['href'])

   
   def downloadImage(self):

       if os.path.exists("./Divnil") != True:
           os.mkdir("./Divnil")

       for url in self.links:
           
           url = self.head + url
           
           resp = requests.get(url, headers=self.headers)
           if  resp.status_code != requests.codes.OK:
               print("URL: %s REQUESTS ERROR. CODE: %d" % (url, resp.status_code))
               continue
           
           soup = BeautifulSoup(resp.text, "html.parser")
           
           img = soup.find("div", id="contents").find("img", id="main_content")
           img_url = self.head + img['original'].replace("../", "")
           img_name = img['alt']
           
           print("start download %s ..." % img_url)

           resp = requests.get(img_url, headers=self.headers)
           if resp.status_code != requests.codes.OK:
               print("IMAGE %s DOWNLOAD FAILED." % img_name)
               continue

           if '/' in img_name:
               img_name = img_name.split('/')[1]

           with open("./Divnil/" + img_name + ".jpg", "wb") as f:
               f.write(resp.content)


   def main(self):
       self.getImageInfoUrl()
       self.downloadImage()


if __name__ == "__main__":
   divnil = Divnil()
   divnil.main()

關于“Python如何爬取網站動漫圖片”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台东县| 寿宁县| 宁都县| 琼结县| 德令哈市| 天峨县| 稻城县| 玛多县| 江川县| 中江县| 清水河县| 珲春市| 惠水县| 平远县| 辰溪县| 根河市| 子洲县| 海城市| 瓦房店市| 晴隆县| 皋兰县| 阿图什市| 孝昌县| 肇东市| 安溪县| 余干县| 潍坊市| 饶河县| 虹口区| 和田县| 武威市| 赤壁市| 东光县| 博湖县| 海阳市| 清河县| 甘洛县| 连江县| 双柏县| 左云县| 汨罗市|