Skip to main content

No project description provided

Project description

czech-covid19-data-api

Code style: black

API wrapper for official covid19 data. Written in Python. Data source https://onemocneni-aktualne.mzcr.cz/api/v2/covid-19.

Installation

Just use:

pip install czech-covid19-data-api

API documentation

Sphinx autogenerated API docs can be found HERE. Nothing fancy, but gets the job done.

How to use

Example 1: Get data in JSON format:

from covid19_api.src import api

if __name__ == "__main__":
    (status, data) = api.get_deaths_overview()

    if status:
        print(data)

Example 2: Get data in CSV format:

from covid19_api.src import api

if __name__ == "__main__":
    (status, data) = api.get_deaths_overview(resource="/umrti.csv")

    if status:
        print(data)

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page