Kurt Peek
Kurt Peek

Reputation: 57771

How to pass a user-defined argument to a scrapy Spider when running it from a script

Similar to How to pass a user defined argument in scrapy spider, I'm trying to run a spider in which a parameter (the start_url) is user defined. However, instead of running scrapy from the command line, I'd like to run it from within a script.

The code I have so far is:

import scrapy
from scrapy.spiders import CrawlSpider, Rule
from scrapy.linkextractors import LinkExtractor
from scrapy.crawler import CrawlerProcess

class FundaMaxPagesSpider(CrawlSpider):
    name = "Funda_max_pages"
    allowed_domains = ["funda.nl"]
    start_urls = ["http://www.funda.nl/koop/amsterdam/"]

    le_maxpage = LinkExtractor(allow=r'%s+p\d+' % start_urls[0])   # Link to a page containing thumbnails of several houses, such as http://www.funda.nl/koop/amsterdam/p10/

    rules = (
    Rule(le_maxpage, callback='get_max_page_number'),
    )

    def get_max_page_number(self, response):
        links = self.le_maxpage.extract_links(response)
        max_page_number = 0                                                 # Initialize the maximum page number
        for link in links:
            if link.url.count('/') == 6 and link.url.endswith('/'):         # Select only pages with a link depth of 3
                print("The link is %s" % link.url)
                page_number = int(link.url.split("/")[-2].strip('p'))       # For example, get the number 10 out of the string 'http://www.funda.nl/koop/amsterdam/p10/'
                if page_number > max_page_number:
                    max_page_number = page_number                           # Update the maximum page number if the current value is larger than its previous value
        print("The maximum page number is %s" % max_page_number)
        place_name = link.url.split("/")[-3]                                # For example, "amsterdam" in 'http://www.funda.nl/koop/amsterdam/p10/'
        print("The place name is %s" % place_name)
        filename = str(place_name)+"_max_pages.txt"                         # File name with as prefix the place name
        with open(filename,'wb') as f:
            f.write('max_page_number = %s' % max_page_number)               # Write the maximum page number to a text file
        yield {'max_page_number': max_page_number}

process = CrawlerProcess({
    'USER_AGENT': 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)'
})

process.crawl(FundaMaxPagesSpider)
process.start() # the script will block here until the crawling is finished

In this example, the start_url is fixed at http://www.funda.nl/koop/amsterdam/, but I'd like to instead pass this as a variable. How can I do that?

Upvotes: 1

Views: 2494

Answers (1)

Rafael Almeida
Rafael Almeida

Reputation: 5240

scrapy crawl FundaMaxPagesSpider -a url='http://stackoverflow.com/'

Is equivalent to:

process.crawl(FundaMaxPagesSpider, url='http://stackoverflow.com/')

Now you just treat the arguments as decribed in the answer you mentioned

def __init__(self, url='http://www.funda.nl/koop/amsterdam/'):
    self.start_urls = [url]

Upvotes: 3

Related Questions