A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/python/build-a-covid19-vaccine-tracker-using-python/ below:

Build a COVID19 Vaccine Tracker Using Python

Build a COVID19 Vaccine Tracker Using Python

Last Updated : 29 Dec, 2020

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 

Python3
import requests
from bs4 import BeautifulSoup


Step 2: Create a URL get function

Python3
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

Python3
htmldata = getdata("https://covid-19tracker.milkeninstitute.org/")
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:

Python3
import requests
from bs4 import BeautifulSoup


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

htmldata = getdata("https://covid-19tracker.milkeninstitute.org/")
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:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4