I'm using Scrapy and have set up:
- Items
- ItemLoader
- ItemPipeline
- start_requests using CSV to define multiple URLs
- Custom Writer
I run the scraper simply:
scrapy crawl scraper
However, all output goes into one file.
I would like one output file per request/URL?
What am I missing?