Skip to main content

A simple rki covid numbers parser

Project description

Robert-Koch Institut COVID numbers parser

License GitHub Workflow Status

Python parser for the latest covid numbers from German RKI (Robert-Koch Institut).

Installation

pip install rki-covid-parser

Usage

Initialize the parser with an aiohttp.session and load the latest data.

parser = RkiCovidParser(session)        
await parser.load_data()


for district in parser.districts:
    # work with districts
    pass

for state in parser.states:
    # work with states
    pass

# work with the country
parser.country.cases

finished loading data, the parser contains a dictionary of districts, each with these properties:

Property Type Description
id string Unique district identifier
name string Name of the district
county string County of the district
state string State of the district
population integer Population
cases integer Active cases
deaths integer Currently tracked deaths
casesPerWeek integer Cases per week
deathsPerWeek integer Deaths per week
recovered integer Recovered cases
weekIncidence float Week incidence
casesPer100k float Cases per 100k population
newCases integer New cases since last day
newDeaths integer New deaths since last day
newRecovered integer New recovered since last day
last_update string Timestamp of the last update

Contribution

See Contribution for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rki-covid-parser-1.2.0.tar.gz (10.2 kB view hashes)

Uploaded Source

Built Distribution

rki_covid_parser-1.2.0-py3-none-any.whl (11.1 kB view hashes)

Uploaded Python 3

Supported by

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