Scrapy: how to use items in spider and how to send items to pipelines?
I am new to scrapy and my task is simple: For a given e-commerce website: crawl all website pages look for products page If the URL point to a product page Create an Item Process the item to store it in a database I created the spider but products are just printed in a simple file. My question is about the project structure: how to use items in spider and how to send items to pipelines ? I can't find a simple example of a project using items and pipelines. Adrien Blanquer How to use items in my spider? Well, the main purpose of items is to store the data you crawled. scrapy.Items are basically