Corona project(python)
from plyer import notification import requests from bs4 import BeautifulSoup import time def notifyMe ( title , message ): notification.notify( title = title, message = message, app_icon = "Desktop\corona Python\icon.ico" , timeout = 21 ) def getData ( url ): r = requests.get(url) return r.text if __name__ == "__main__" : # notifyMe("Arman","Let stop the Spread of the virus together") myHtmlData= getData( "https://www.mohfw.gov.in/" ) pr...