Corona Virus Details in India - Using Python PyQt5
Last Updated : 12 Jul, 2025
In this article, we will see how we can create a PyQt5 application that tells about the details of coronavirus cases i.e total cases, recovered cases and total deaths across India i.e state wise result.
Modules required and Installation:PyQt5 : PyQt is a Python binding of the cross-platform GUI toolkit Qt, implemented as a Python plug-in. PyQt is free software developed by the British firm Riverbank Computing.
Requests : Requests allows you to send HTTP/1.1 requests extremely easily. There’s no need to manually add query strings to your URLs.
Beautiful Soup: Beautiful Soup is a library that makes it easy to scrape information from web pages. It sits atop an HTML or XML parser, providing Pythonic idioms for iterating, searching, and modifying the parse tree.
Implementations steps :
1. Get coronavirus state wise list and store it in a list
2. Create a non-editable combo box, set its geometry
3. From list get the state names and add it to the combo box
4. Create three labels to show information about total cases, recovered cases and death cases
5. Set geometry, alignment and border to each label
6. Add action to the combo box
7. Inside the action filter the list to get desired information
8. Show the output the screen with the help of labels
Below is the implementation
Python3 1==
# importing librariesfromPyQt5.QtWidgetsimport*fromPyQt5importQtCore,QtGuifromPyQt5.QtGuiimport*fromPyQt5.QtCoreimport*frombs4importBeautifulSoupimportrequestsimportsysclassWindow(QMainWindow):def__init__(self):super().__init__()# setting titleself.setWindowTitle("Python ")# setting geometryself.setGeometry(100,100,400,500)# calling methodself.corona()# calling methodself.UiComponents()# showing all the widgetsself.show()defcorona(self):extract_contents=lambdarow:[x.text.replace('\n','')forxinrow]URL='https://www.mohfw.gov.in/'SHORT_HEADERS=['SNo','State','Indian-Confirmed','Foreign-Confirmed','Cured','Death']response=requests.get(URL).contentsoup=BeautifulSoup(response,'html.parser')header=extract_contents(soup.tr.find_all('th'))self.stats=[]all_rows=soup.find_all('tr')forrowinall_rows:stat=extract_contents(row.find_all('td'))ifstat:iflen(stat)==5:# last rowstat=['',*stat]self.stats.append(stat)eliflen(stat)==6:self.stats.append(stat)self.stats[-1][1]="Total Cases"self.stats.remove(self.stats[-1])# method for widgetsdefUiComponents(self):# creating a combo box widgetself.combo_box=QComboBox(self)# setting geometry to combo boxself.combo_box.setGeometry(100,50,200,40)# setting fontself.combo_box.setFont(QFont('Times',10))# adding items to combo boxforiinself.stats:self.combo_box.addItem(i[2])# adding action to the combo boxself.combo_box.activated.connect(self.get_cases)# creating label to show the total casesself.label_total=QLabel("Total Cases ",self)# setting geometryself.label_total.setGeometry(100,300,200,40)# setting alignment to the textself.label_total.setAlignment(Qt.AlignCenter)# adding border to the labelself.label_total.setStyleSheet("border : 2px solid black;")# creating label to show the recovered casesself.label_reco=QLabel("Recovered Cases ",self)# setting geometryself.label_reco.setGeometry(100,350,200,40)# setting alignment to the textself.label_reco.setAlignment(Qt.AlignCenter)# adding borderself.label_reco.setStyleSheet("border : 2px solid black;")# creating label to show death casesself.label_death=QLabel("Total Deaths ",self)# setting geometryself.label_death.setGeometry(100,400,200,40)# setting alignment to the textself.label_death.setAlignment(Qt.AlignCenter)# adding border to the labelself.label_death.setStyleSheet("border : 2px solid black;")# method called by pushdefget_cases(self):# getting indexindex=self.combo_box.currentIndex()# getting datatotal=self.stats[index][3]recovered=self.stats[index][4]deaths=self.stats[index][5]# show data through labelsself.label_total.setText("Total Cases : "+total)self.label_reco.setText("Recovered Cases : "+recovered)self.label_death.setText("Total Deaths : "+deaths)# create pyqt5 appApp=QApplication(sys.argv)# create the instance of our Windowwindow=Window()window.show()# start the appsys.exit(App.exec())