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
dev_nectarpy-0.0.25.tar.gz
(30.6 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
File details
Details for the file dev_nectarpy-0.0.25.tar.gz.
File metadata
- Download URL: dev_nectarpy-0.0.25.tar.gz
- Upload date:
- Size: 30.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eac0015b32c70039632d560c01f5ca14a9be32071c763898d8f968996623b65c
|
|
| MD5 |
07825bef8f8be5f6044d2cae1c509eff
|
|
| BLAKE2b-256 |
7ca4a488c8e4bf45773d2ea3ea7efd5fd4dbcedcc6ffb357471595262bff5254
|
File details
Details for the file dev_nectarpy-0.0.25-py3-none-any.whl.
File metadata
- Download URL: dev_nectarpy-0.0.25-py3-none-any.whl
- Upload date:
- Size: 32.1 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 |
93f3e8e2db4c8f08276bbfdfbb58e83e6eb0c413834283d1e931afd5ad086355
|
|
| MD5 |
7d4d563a750f656f6fab0401bdd5b0a0
|
|
| BLAKE2b-256 |
89247c60ed003925c55cbfa19c5d0f1397dc179cca2b64b79e0b1ed52d6c6aa9
|