Metadata-Version: 2.1
Name: cepimose
Version: 0.0.2
Summary: A small example package to get raw data from NIJZ vaccinations dashboard
Home-page: https://github.com/sledilnik/py-cepimose
Author: sledilnik.org
Author-email: info@sledilnik.org
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/sledilnik/py-cepimose/issues
Description: # cepimose
        
        Small library to parse raw data from NIJZ's PowerBI [dashboard](https://app.powerbi.com/view?r=eyJrIjoiZTg2ODI4MGYtMTMyMi00YmUyLWExOWEtZTlmYzIxMTI2MDlmIiwidCI6ImFkMjQ1ZGFlLTQ0YTAtNGQ5NC04OTY3LTVjNjk5MGFmYTQ2MyIsImMiOjl9&pageName=ReportSectionf7478503942700dada61) displaying vaccination stats fro Slovenia
        
        ## Examples
        
        Prepare environment
        ```
        python3 -mvenv env
        . ./env/bin/activate
        pip install git+https://github.com/sledilnik/py-cepimose.git@master#egg=cepimose
        ```
        
        Examples
        ```
        import pandas as pd
        import cepimose
        
        data = cepimose.vaccinations_by_day()
        df = pd.DataFrame.from_dict(data)
        print(df)
        
        data = cepimose.vaccinations_by_age()
        df = pd.DataFrame.from_dict(data)
        print(df)
        
        data = cepimose.vaccines_supplied_and_used()
        df = pd.DataFrame.from_dict(data)
        print(df)
        
        ```
        
        ## Dev
        
        ```
        pipenv install -d
        pipenv run test
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
