Metadata-Version: 2.4
Name: jupyterhealth-client
Version: 0.2.0
Summary: JupyterHealth client library
Project-URL: Documentation, https://jupyterhealth-client.readthedocs.org
Project-URL: Issues, https://github.com/jupyterhealth/jupyterhealth-client/issues
Project-URL: Source, https://github.com/jupyterhealth/jupyterhealth-client
Author-email: Jupyter <benjaminrk@gmail.com>
License-Expression: BSD-3-Clause
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Jupyter
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: yarl
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: responses; extra == 'test'
Description-Content-Type: text/markdown

# JupyterHealth client

A Python client library for the JupyterHealth exchange.

Install:

```
pip install jupyterhealth-client
```

Use:

```python
from jupyterhealth_client import JupyterHealthClient

client = JupyterHealthClient()
```

For more information on the client API, see [the docs](https://jupyterhealth-client.readthedocs.io/).
