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

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • Python3爬蟲爬取英雄聯盟高清桌面壁紙功能示例【基于Scrapy框架】

Python3爬蟲爬取英雄聯盟高清桌面壁紙功能示例【基于Scrapy框架】

發布時間:2020-10-20 10:50:03 來源:腳本之家 閱讀:251 作者:包子源 欄目:開發技術

本文實例講述了Python3爬蟲爬取英雄聯盟高清桌面壁紙功能。分享給大家供大家參考,具體如下:

使用Scrapy爬蟲抓取英雄聯盟高清桌面壁紙

源碼地址:https://github.com/snowyme/loldesk

開始項目前需要安裝python3和Scrapy,不會的自行百度,這里就不具體介紹了

首先,創建項目

scrapy startproject loldesk

生成項目的目錄結構

Python3爬蟲爬取英雄聯盟高清桌面壁紙功能示例【基于Scrapy框架】

首先需要定義抓取元素,在item.py中,我們這個項目用到了圖片名和鏈接

import scrapy
class LoldeskItem(scrapy.Item):
  name = scrapy.Field()
  ImgUrl = scrapy.Field()
  pass

接下來在爬蟲目錄創建爬蟲文件,并編寫主要代碼,loldesk.py

import scrapy
from loldesk.items import LoldeskItem
class loldeskpiderSpider(scrapy.Spider):
  name = "loldesk"
  allowed_domains = ["www.win4000.com"]
  # 抓取鏈接
  start_urls = [
    'http://www.win4000.com/zt/lol.html'
  ]
  def parse(self, response):
    list = response.css(".Left_bar ul li")
    for img in list:
      imgurl = img.css("a::attr(href)").extract_first()
      imgurl2 = str(imgurl)
      next_url = response.css(".next::attr(href)").extract_first()
      if next_url is not None:
        # 下一頁
        yield response.follow(next_url, callback=self.parse)
      yield scrapy.Request(imgurl2, callback=self.content)
  def content(self, response):
    item = LoldeskItem()
    item['name'] = response.css(".pic-large::attr(title)").extract_first()
    item['ImgUrl'] = response.css(".pic-large::attr(src)").extract()
    yield item
    # 判斷頁碼
    next_url = response.css(".pic-next-img a::attr(href)").extract_first()
    allnum = response.css(".ptitle em::text").extract_first()
    thisnum = next_url[-6:-5]
    if int(allnum) > int(thisnum):
      # 下一頁
      yield response.follow(next_url, callback=self.content)

圖片的鏈接和名稱已經獲取到了,接下來需要使用圖片通道下載圖片并保存到本地,pipelines.py:

from scrapy.pipelines.images import ImagesPipeline
from scrapy.exceptions import DropItem
from scrapy.http import Request
import re
class MyImagesPipeline(ImagesPipeline):
  def get_media_requests(self, item, info):
    for image_url in item['ImgUrl']:
      yield Request(image_url,meta={'item':item['name']})
  def file_path(self, request, response=None, info=None):
    name = request.meta['item']
    name = re.sub(r'[?\\*|“<>:/()0123456789]', '', name)
    image_guid = request.url.split('/')[-1]
    filename = u'full/{0}/{1}'.format(name, image_guid)
    return filename
  def item_completed(self, results, item, info):
    image_path = [x['path'] for ok, x in results if ok]
    if not image_path:
      raise DropItem('Item contains no images')
    item['image_paths'] = image_path
    return item

最后在settings.py中設置存儲目錄并開啟通道:

# 設置圖片存儲路徑
IMAGES_STORE = 'F:/python/loldesk'
#啟動pipeline中間件
ITEM_PIPELINES = {
  'loldesk.pipelines.MyImagesPipeline': 300,
}

在根目錄下運行程序:

scrapy crawl loldesk

大功告成!!!一共抓取到128個文件夾

Python3爬蟲爬取英雄聯盟高清桌面壁紙功能示例【基于Scrapy框架】

更多關于Python相關內容可查看本站專題:《Python Socket編程技巧總結》、《Python正則表達式用法總結》、《Python數據結構與算法教程》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》、《Python入門與進階經典教程》及《Python文件與目錄操作技巧匯總》

希望本文所述對大家Python程序設計有所幫助。

向AI問一下細節

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

AI

巴马| 龙游县| 广饶县| 白河县| 定日县| 习水县| 大埔县| 龙游县| 宜宾市| 托克托县| 顺义区| 寿光市| 长泰县| 吴川市| 山西省| 合山市| 吉隆县| 赞皇县| 汾西县| 定南县| 莱州市| 新干县| 德庆县| 荆州市| 铅山县| 上犹县| 鄂托克旗| 闸北区| 乌鲁木齐县| 温泉县| 台东市| 佳木斯市| 临沭县| 额敏县| 株洲市| 邵阳市| 唐山市| 赤壁市| 宜君县| 靖江市| 淮阳县|