Use scrapy to get list of urls, and then scrape content inside those urls
问题 I need a Scrapy spider to scrape the following page (https://www.phidgets.com/?tier=1&catid=64&pcid=57) for each URL (30 products, so 30 urls) and then go into each product via that url and scrape the data inside. I have the second part working exactly as I want: import scrapy class ProductsSpider(scrapy.Spider): name = "products" start_urls = [ 'https://www.phidgets.com/?tier=1&catid=64&pcid=57', ] def parse(self, response): for info in response.css('div.ph-product-container'): yield {