Scrapy creates scrapy.http.Request objects for each URL in the start_urls attribute of the Spider, and assigns them the parse method of the spider as their callback function.
https://github.com/scrapy/scrapy/blob/master/scrapy/spider.py
The documents has the description as above. But I cannot find the place where calls parse() as its callback function.
def parse(self, response):
raise NotImplementedError
Can someone let me know where calls the function above? Thanks.