Fetching the Corona Virus data across the world and scraping into Ms Excel.
- python
- Beautiful soup
- pandas
- HTML
- CSS
Web scraping, also known as web data extraction, is the process of retrieving or “scraping” data from a website. This information is collected and then exported into a format that is more useful for the user. Be it a spreadsheet or an API.
- Make Requests
- Create Beautiful Soup object
- Extract the data
- Store the data
- Create DataFrame
- Export the data
We need a webpage to fetch the coronavirus data from. So I am using the Worldometer website here.
pip install requests
pip install lxml
pip install bs4