A basic web scrapping in python and beautiful soup
- Open Command Prompt.
- Check wheather the python 3 is installed or not(To check you can type python --version in command prompt)
- If python is not installed,then you can download it form here
- After Installing Python, Install requests, bs4(Beautiful Soup) and lxml.
- Commands for installation:
pip install requests
pip install bs4
pip install lxml