-1

私は、scrapy を使用して Web サイトからアイテムをスクレイピングするプロジェクトを作成していますが、問題は、そのサイトの最初の 2 ページの xpath が他のページの xpath と異なることです。その結果、私のスパイダーは最初の 2 つのページからアイテムをスクレイピングし、他のページをクロールするだけです。スパイダーにページのアイテムもスクレイピングさせるにはどうすればよいですか??

必要に応じてスパイダーを通して見ることができるように、ここにもスパイダーを含めています。

from scrapy.spider import BaseSpider
from scrapy.selector import HtmlXPathSelector
from project2.items import Project2Item
from scrapy.http import Request

class ProjectSpider(BaseSpider):
    name = "project2spider"
    allowed_domains = ["http://directory.thesun.co.uk/"]
    current_page_no = 1
    start_urls = [
        'http://directory.thesun.co.uk/find/uk/computer-repair'
        ]

    def get_next_url(self, fired_url):
        if '/page/' in fired_url:
            url, page_no = fired_url.rsplit('/page/', 1)
        else:
            if self.current_page_no != 1:
                #end of scroll
                return 
        self.current_page_no += 1
        return "http://directory.thesun.co.uk/find/uk/computer-repair/page/%s" % self.current_page_no

# the parse procedure, and here is the codes which declares which field to scrape. 
    def parse(self, response):
        fired_url = response.url
        hxs = HtmlXPathSelector(response)
        sites = hxs.select('//div[@class="abTbl "]')
   
        for site in sites:
            item = Project2Item()
            item['Catogory'] = site.select('span[@class="icListBusType"]/text()').extract()
            item['Bussiness_name'] = site.select('a/@title').extract()
            item['Description'] = site.select('span[last()]/text()').extract()
            item['Number'] = site.select('span[@class="searchInfoLabel"]/span/@id').extract()
            item['Web_url'] = site.select('span[@class="searchInfoLabel"]/a/@href').extract()
            item['adress_name'] = site.select('span[@class="searchInfoLabel"]/span/text()').extract()
            item['Photo_name'] = site.select('img/@alt').extract()
            item['Photo_path'] = site.select('img/@src').extract()
            #items.append(item)
            yield item
        next_url = self.get_next_url(fired_url)
        if next_url:
            yield Request(next_url, self.parse, dont_filter=True)
        

他のページでは、これを使用する必要があります:sites = hxs.select('//div[@class="icListItem"]')

これをスパイダーに含めて、他のページからもアイテムをスクレイピングできるようにするにはどうすればよいですか..

現在、最初の 2 ページをスクレイピングし、他のページをクロールするだけです。

4

1 に答える 1