Metadata-Version: 2.1
Name: evidencedev-py
Version: 0.1.0
Summary: A python wrapper to pull data from websites created in evidence.dev
Home-page: https://github.com/AmunAnalytics/evidencedev-py
Author: Frank Boerman
Author-email: frank@fboerman.nl
License: MIT
Keywords: evidence.dev data datascience api
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE.MD
Requires-Dist: requests
Requires-Dist: pandas
Requires-Dist: pyarrow

# evidencedev-py

This package is a small utility to download datasets from sites created in [evidence](https://evidence.dev/)

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

It supports authentication via header api key.

## Example usage
```python

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')

```
