Python program to scrape out information from flipkart/olx using BeautifulSoup and requests.
BeautifulSoup is a Python library used to scrape out information from a HTML page. Requests is used to send a HTTP requests to the site which we want to scrape. The HTTP request returns a Response Object with all the response data.
* python Version v3.8.5
* pip3 Version v20.2.3
* BeautifulSoup v4.9.1
To setup -
pip install beautifulsoup4
pip install requests