VOOZH about

URL: https://www.geeksforgeeks.org/python/how-to-create-a-covid19-data-representation-gui/

⇱ How to create a COVID19 Data Representation GUI? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to create a COVID19 Data Representation GUI?

Last Updated : 12 Jul, 2025

Prerequisites: Python Requests, Python GUI – tkinter
Sometimes we just want a quick fast tool to really tell whats the current update, we just need a bare minimum of data. Web scraping deals with taking some data from the web and then processing it and displaying the relevant content in a short and crisp manner. 
What the code is doing ? 
 

  • First we are using Tkinter Library to make GUI required for our script
  • We are using requests Library to get the data from the unofficial api
  • Then we are displaying the data we need in this case its Total active cases: and confirmed cases


below is the implementation. 
 

Output:


 

👁 python-tkinter-covid19-gui


 

Comment