Export the WHO Covid-19 Database to a Pandas DataFrame.
$ pip install whocovid19db
# Import the Exporter class:
from whocovid19db import Exporter
# Create a new instance:
exp = Exporter()
# Export 5 documents from 2021/Oct/29 to 2021/Oct/30:
df = exp.get_df(date_interval=(20211029, 20211030), count=5)