I wrote the code shown in the video to externally save the webpage as html file. But it’s not working for me.
Unable to save webpage as html
Hey @SanchitSayala, copy past code from here, and check if this works or not,
If this works, than check your code line by line from this.
Hope this resolved your doubt.
Plz mark it as resolved in my doubts section. 
When you run ‘scrapy crawl’ on cmd make sure you type the name you’ve given your spider inside your quotes_spider.py file instead of typing the python file name. For Example:
My .py file is saved as quotes_spider.py
class QuotesSpider(scrapy.Spider):
name = "quotes"
So on cmd type :
‘scrapy crawl quotes’ (this is the name you’ve given your spider inside your QuotesSpider class)
Instead of ‘scrapy crawl quotes_spider’ (which is the .py file name)
