VOOZH about

URL: https://www.geeksforgeeks.org/python/scraping-covid-19-statistics-using-beautifulsoup/

⇱ Scraping Covid-19 statistics using BeautifulSoup - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scraping Covid-19 statistics using BeautifulSoup

Last Updated : 28 Apr, 2025

Coronavirus, one of the biggest pandemic has brought all the world to Danger. Along with this, it is one of the trending News, everyone has this day. In this article, we will be scraping data and printing Covid-19 statistics in human-readable form. The data will be scraped from this website
Prerequisites:
 

  • The libraries 'requests', 'bs4', and 'texttable' have to be installed -
     
pip install bs4
pip install requests
pip install texttable

Project : Let's head over to code, create a file called run.py. 

To print the data in human-readable format, we will use the library 'texttable'
 

Output:
 

+---------------------------+-------------------+----------+-------------------+
| Country | Number of cases | Deaths | Continent |
+===========================+===================+==========+===================+
| United States | 644348 | 28554 | North America |
+---------------------------+-------------------+----------+-------------------+
| Spain | 180659 | 18812 | Europe |
+---------------------------+-------------------+----------+-------------------+
| Italy | 165155 | 21645 | Europe |
+---------------------------+-------------------+----------+-------------------+
...


NOTE: The output depends on the current statistics
Stay home, stay safe!
 

Comment