Metadata-Version: 2.4
Name: dev-nectarpy
Version: 0.0.63
Summary: A Python API module designed to run queries on Nectar
Home-page: https://github.com/NectarProtocol/python-nectar-module
Author: Tamarin Health
Author-email: phil@tamarin.health
License: Apache License 2.0
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11.6,<3.12
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE
Requires-Dist: web3<7.0.0
Requires-Dist: python-dotenv==1.1.0
Requires-Dist: hpke==0.3.2
Requires-Dist: dill==0.3.9
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# PYTHON NECTAR MODULE 

## 1. Install the module
```bash
pip install nectarpy

```
 • If you see an error, try `pip3 install nectarpy` instead.

 • Wait until the installation finishes. You should see a message that it was installed successfully.

## 2. Use the module in Python
```bash
from nectarpy import Nectar

```
```bash
API_SECRET = "<api-secret>"   # Replace with your actual API secret. You can obtain the secret key when you generate the EOA key pair.

```
```bash
nectar = Nectar(API_SECRET)

```

## 3. How to use in details:
 • Data Analyst role: [API document for Data Analyst](https://nectar-da.tamarin.health/)

 • Data Owner role: [API document for Data Owner](https://nectar-do.tamarin.health/)
