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
scrapy crawl someSpider --logfile some.text
This will do exactly what you are looking for, save the output of the command that you see on the screen to a text file.