Shell Scrapy
scrapy shell 'http://quotes.toscrape.com/page/1/'
Weary Wryneck
scrapy shell 'http://quotes.toscrape.com/page/1/'
scrapy shell "http://quotes.toscrape.com/page/1/"
On command line: scrapy shell
from scrapy import Request
req = Request('yoururl.com', cookies={"header1":"value1"})
fetch(req)