Web Scrapping of Amazon India using python libraries
Data from Amazon India is fetched in this project with the help of BeautifulSoup and requests libraries of python. So firstly you have to install bs4 package (BeautifulSoup) and requests module. These can be installed with usual procedure of pip install package_name.
After importing the necessary modules, request to the url of interest is sent and while fetching the data, used some basics of html codes like various kinds of tags, headers,class.
Any other url can also be scrapped with some necessary changes in this code.