Metadata-Version: 2.1
Name: dasscostorageclient
Version: 0.0.5
Summary: DaSSCo Storage API SDK
Author: DaSSCo
Author-email: dassco@ku.dk
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pydantic

# DaSSCo Storage Client

A simple client library used to call the DaSSco Storage API


### Installation

Requires Python 3.10+

```
python -m pip install dasscostorageclient 
```


### Getting started

```
from dasscostorageclient import DaSSCoStorageClient

client_id = 'CLIENT_ID'
client_secret = 'CLIENT_SECRET'

client = DaSSCoStorageClient(client_id, client_secret)

institutions = client.institutions.get()

```
