Open In App

Build a COVID19 Vaccine Tracker Using Python

As we know the world is facing an unprecedented challenge with communities and economies everywhere affected by the COVID19. So, we are going to do some fun during this time by tracking their vaccine. Let’s see a simple Python script to improve for tracking the COVID19 vaccine.

Modules Needed

pip install bs4
pip install requests

Approach:



Let’s see the stepwise execution of the script

Step 1:   Import all dependence 






import requests
from bs4 import BeautifulSoup

Step 2: Create a URL get function




def getdata(url):
    r = requests.get(url)
    return r.text

Step 3: Now pass the URL into the getdata function and Convert that data into HTML code




soup = BeautifulSoup(htmldata, 'html.parser')
res = soup.find_all("div", class_="is_h5-2 is_developer w-richtext")
print(str(res))

Output:

Note: These scripts will give you only Raw data in String format you have to print your data with your needs. 

Complete code:




import requests
from bs4 import BeautifulSoup
  
  
def getdata(url):
    r = requests.get(url)
    return r.text
  
soup = BeautifulSoup(htmldata, 'html.parser')
result = str(soup.find_all("div", class_="is_h5-2 is_developer w-richtext"))
  
print("NO 1 " + result[46:86])
print("NO 2 "+result[139:226])
print("NO 3 "+result[279:305])
print("NO 4 "+result[358:375])
print("NO 5 "+result[428:509])

Output:


Article Tags :