how to scrape html file in your computer using scrapy code example
Example 1: scrapy create project
scrapy startproject projectname
Example 2: how to scrape data from a html page saved locally
from bs4 import BeautifulSoup
import html5lib
myFile=open('C:/Users/CSE/AppData/Local/atom/app-1.42.0/practise.html','r')
soup=BeautifulSoup(myFile,"html5lib")
print(soup.prettify())