Skip to content

AmunAnalytics/evidencedev-py

Repository files navigation

evidencedev-py

This package is a small utility to download datasets from sites created in evidence

It will read the manifest file, download the parquet files and return a pandas dataframe.

It supports authentication via header api key.

Example usage

from evidencedev import EvidenceClient
client = EvidenceClient(siteurl = 'https://reports.coreflowbased.eu/', 
                        [auth_key='<API KEY>',
                        auth_header='X-API-Key']) # X-API-Key is the default
available_datasets = client.list_datasets()
df = client.get_dataset('da_baseload_prices')