evidencedev-py

A python wrapper to pull data from websites created in evidence.dev


Keywords
evidence, dev, data, datascience, api
License
MIT
Install
pip install evidencedev-py==0.1.0

Documentation

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(site_url = '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')