Our website compares the prices of any given product which is available on the amazon and filpkart, thus shows you the result of price available on both site along with the suitable links. To develop this project we have used the python web framework known as Django. Web pages are made using the bootstrap HTML they are web.html and about.html. fig directories of Project /PriceCompare directory is the main folder generated by command $ django-admin startproject PriceCompare Which contains the manage.py file that helps to run the server and host our web on localhost / app1 folder is created by a command $ python manage.py startapp app1 Here will find all the required files like views.py, urls.py, etc. /Template directory contains all the HTML files Views.py file contains the code which compare the user given data. We have used the selenium module of python to scrap the web data which are allowed to scrape . Selenium webdriver is used to autom...