A Python API module designed to run queries on Nectar
Project description
PYTHON NECTAR MODULE
This is a Python API module designed to run queries on Nectar, add bucket information, and set policies.
Install
pip3 install nectarpy
Python Example
from nectarpy import Nectar
API_SECRET = "<api-secret>"
nectar = Nectar(API_SECRET)
policy_id = nectar.add_policy(
allowed_categories=["*"],
allowed_addresses=[],
allowed_columns=["*"],
valid_days=1000,
usd_price=0.0123,
)
TEE_DATA_URL = "https://<ip-address>:5229/"
bucket_id = nectar.add_bucket(
policy_ids=[policy_id],
data_format="std1",
node_address=TEE_DATA_URL,
)
result = nectar.train_model(
type="linear-regression",
parameters='{"xcols":["heart_rate","age"],"ycol":"height"}',
filters='[{"column":"smoking","filter":"=","value":false}]',
use_allowlists=[False],
access_indexes=[0],
bucket_ids=[bucket_id],
policy_indexes=[0],
)
print(result)
Integration Tests
1: Create a .env file
API_SECRET=0x123...
NETWORK_MODE=<localhost | moonbase | moonbeam>
TEE_DATA_URL=https://<ip-address>:5229/
2: Run
python3 tests.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nectarpy-0.14.0.tar.gz
(31.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
nectarpy-0.14.0-py3-none-any.whl
(32.0 kB
view details)
File details
Details for the file nectarpy-0.14.0.tar.gz.
File metadata
- Download URL: nectarpy-0.14.0.tar.gz
- Upload date:
- Size: 31.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82eb91edeb550ce76c4592317e1904d27098cf03ef4e6d0a307655cb7ace3c49
|
|
| MD5 |
234aecf49c5560db82bf26c3e29c2e2f
|
|
| BLAKE2b-256 |
10269d4c019881f627911b56a6adb031549a7eb46bfa5e5eb1dfbe51c76e8fee
|
File details
Details for the file nectarpy-0.14.0-py3-none-any.whl.
File metadata
- Download URL: nectarpy-0.14.0-py3-none-any.whl
- Upload date:
- Size: 32.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c9d818b8a22292bd83af3f88deb56e5eebfe3afb583147501ce45d066ea26e8
|
|
| MD5 |
fad102f988085ab4b40541de56ad9f61
|
|
| BLAKE2b-256 |
da7dbe2e203355e479dacbe1de256597e555f99d3de86a77d8968722067833c9
|