I am trying to save the output of the scrapy crawl command I have tried scrapy crawl someSpider -o some.json -t json >> some.text But it doesn\'t worked ...c
scrapy crawl someSpider -o some.json -t json >> some.text
if you want to get the output from runspider command.
scrapy runspider scraper.py -o some.json -t json 2> some.text
This works as well.