Learn practical skills, build real-world projects, and advance your career
from urllib.request import urlretrieve
hotel_url = 'https://www.kaggle.com/gpreda/covid-world-vaccination-progress?select=country_vaccinations_by_manufacturer.csv'
urlretrieve(hotel_url, 'covid.csv')
('covid.csv', <http.client.HTTPMessage at 0x7f4a686e6af0>)
!pip install pandas --upgrade --quiet
import pandas as pd
covid_df = pd.read_csv('country_vaccinations_by_manufacturer.csv')