Hi tE
Hi tE

Reputation: 154

How to scrape results of each searchitem and return?

I have been attempting to scrape some information from a company register. Which works, but i wish to repeat so for every result given by the search entry. I have been trying to use linkextractors but im not getting it to work.

The search results webpage is: https://www.companiesintheuk.co.uk/Company/Find?q=a

Scraping individual results from the search items works(if I click on a result item), but how do i repeat this for every result item?

Here is my code:

import scrapy
import re
from scrapy.linkextractors import LinkExtractor

class QuotesSpider(scrapy.Spider):


  name = 'CYRecursive'
  start_urls = [
      'https://www.companiesintheuk.co.uk/ltd/a-2']

  def parse(self, response):

    # Looping throught the searchResult block and yielding it
    for i in response.css('div.col-md-9'):

        for i in response.css('div.col-md-6'):
          yield {
              'company_name': re.sub('\s+', ' ', ''.join(i.css('#content2 > strong:nth-child(2) > strong:nth-child(1) > div:nth-child(1)::text').get())),
              'address': re.sub('\s+', ' ', ''.join(i.css("#content2 > strong:nth-child(2) > address:nth-child(2) > div:nth-child(1) > span:nth-child(1)::text").extract_first())),
              'location': re.sub('\s+', ' ', ''.join(i.css("#content2 > strong:nth-child(2) > address:nth-child(2) > div:nth-child(1) > span:nth-child(3)::text").extract_first())),
              'postal_code': re.sub('\s+', ' ', ''.join(i.css("#content2 > strong:nth-child(2) > address:nth-child(2) > div:nth-child(1) > a:nth-child(5) > span:nth-child(1)::text").extract_first())),
          }

Upvotes: 0

Views: 42

Answers (1)

gangabass
gangabass

Reputation: 10666

import scrapy
import re
from scrapy.linkextractors import LinkExtractor


class QuotesSpider(scrapy.Spider):

    name = 'CYRecursive'
    start_urls = [
        'https://www.companiesintheuk.co.uk/Company/Find?q=a']

    def parse(self, response):

        for company_url in response.xpath('//div[@class="search_result_title"]/a/@href').extract():
            yield scrapy.Request(
                url=response.urljoin(company_url),
                callback=self.parse_details,
            )

        next_page_url = response.xpath('//li/a[@class="pageNavNextLabel"]/@href').extract_first()
        if next_page_url:
            yield scrapy.Request(
                url=response.urljoin(next_page_url),
                callback=self.parse,
            )


    def parse_details(self, response):

        # Looping throught the searchResult block and yielding it
        for i in response.css('div.col-md-9'):

            for i in response.css('div.col-md-6'):
                yield {
                    'company_name': re.sub('\s+', ' ', ''.join(i.css('#content2 > strong:nth-child(2) > strong:nth-child(1) > div:nth-child(1)::text').get())),
                    'address': re.sub('\s+', ' ', ''.join(i.css("#content2 > strong:nth-child(2) > address:nth-child(2) > div:nth-child(1) > span:nth-child(1)::text").extract_first())),
                    'location': re.sub('\s+', ' ', ''.join(i.css("#content2 > strong:nth-child(2) > address:nth-child(2) > div:nth-child(1) > span:nth-child(3)::text").extract_first())),
                    'postal_code': re.sub('\s+', ' ', ''.join(i.css("#content2 > strong:nth-child(2) > address:nth-child(2) > div:nth-child(1) > a:nth-child(5) > span:nth-child(1)::text").extract_first())),
                }

And of course you can use start_requests to automatically yield all searches from a to z.

Your CSS expressions are wrong:

            yield {
                'company_name': response.xpath('//div[@itemprop="name"]/text()').extract_first(),
                'address': response.xpath('//span[@itemprop="streetAddress"]/text()').extract_first(),
                'location': response.xpath('//span[@itemprop="addressLocality"]/text()').extract_first(),
                'postal_code': response.xpath('//span[@itemprop="postalCode"]/text()').extract_first(),
            }

Upvotes: 1

Related Questions