corona-python

A Python 3 wrapper for the COVID-19 API


License
MIT
Install
pip install corona-python==1.0.1

Documentation

Documentation Status License GitHub stars PyPI version

corona_python

A Python API Wrapper for coronavirus stats

Installation

To install corona-python, do:

pip install corona-python

or

python -m pip install corona-python

Usage

from corona_python import Country
country = Country("USA")

print(country.total_cases())

More examples are provided in the examples folder

Documentation

Documentation can be found here

Functions

Country:

last_updated()
flag()
total_cases()
today_cases()
total_deaths()
today_deaths()
recovered()
today_recovered()
active()
critical()
cases_per_one_million()
deaths_per_one_million()
total_tests()
tests_per_one_million()
population()
continent()
one_case_per_people()
one_death_per_people()
one_test_per_people()
get_all()

World:

last_updated()
total_cases()
today_cases()
total_deaths()
today_deaths()
recovered()
today_recovered()
active_cases()
critical_cases()
cases_per_one_million()
deaths_per_one_million()
total_tests()
population()
affected_countries()
tests_per_one_million()
one_case_per_people()
one_death_per_people()
one_test_per_people()
active_per_million()
recovered_per_million()
critical_per_million()
get_all()

More detailed explanations of the functions can be found in the docs

Errors

The module will raise KeyError if the given country is invalid

If the module doesn't return anything, there might be a problem with the API. To report the problem, contact me, the developer or create an issue.