Metadata-Version: 2.1
Name: rki-covid-parser
Version: 1.2.0
Summary: A simple rki covid numbers parser
Home-page: https://github.com/thebino/rki-covid-parser
Author: Stürmer, Benjamin
Author-email: webmaster@stuermer-benjamin.de
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/thebino/rki-covid-parser/issues
Description: # Robert-Koch Institut COVID numbers parser
        
        [![License](https://img.shields.io/github/license/thebino/rki-covid-parser)](./LICENSE.md)
        ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/thebino/rki-covid-parser/Check%20the%20ArcGis%20endpoint%20availibility)
        
        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](https://github.com/thebino/rki-covid-parser/blob/development/CONTRIBUTING.md) for details.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
