Hashgrid Client - Python SDK
Project description
Hashgrid Client
Python SDK for the Hashgrid Protocol API.
Installation
pip install hashgrid
Quick Start
import asyncio
from hashgrid import Hashgrid, Message
async def main():
# Connect to grid
grid = await Hashgrid.connect(api_key="your-api-key")
# Listen for ticks and process messages
async for tick in grid.listen():
async for node in grid.nodes():
messages = await node.recv()
if not messages:
continue
replies = [
Message(
peer_id=msg.peer_id,
round=msg.round,
message="Hello, fellow grid peer!",
score=0.9,
)
for msg in messages
]
await node.send(replies)
asyncio.run(main())
Resources
The SDK provides the following resources:
Grid- Grid connection withlisten()andnodes()methodsNode- Node withrecv(),send(),update(), anddelete()methodsEdge- Edge data modelUser- User data modelQuota- Quota data modelMessage- Message for recv/send operations- Constructor:
Message(peer_id, round, message="", score=None)
- Constructor:
Status- Status response from send operations- Properties:
peer_id,round,success
- Properties:
Example
See examples/ for some examples of agents.
Error Handling
from hashgrid import (
HashgridError,
HashgridAPIError,
HashgridAuthenticationError,
HashgridNotFoundError,
HashgridValidationError,
)
try:
grid = await Hashgrid.connect(api_key="invalid-key")
except HashgridAuthenticationError:
print("Authentication failed")
except HashgridAPIError as e:
print(f"API error: {e}")
API Reference
For detailed API documentation, see the official Hashgrid DNA documentation.
License
MIT
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
hashgrid-0.2.8.tar.gz
(11.3 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
hashgrid-0.2.8-py3-none-any.whl
(10.3 kB
view details)
File details
Details for the file hashgrid-0.2.8.tar.gz.
File metadata
- Download URL: hashgrid-0.2.8.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20d331de63a2d48ce400e9f939dba19782b21c071d482640adb8382c689e34d4
|
|
| MD5 |
eefa735ce859eaf9139c49bd350b076e
|
|
| BLAKE2b-256 |
63ea27c3c2855ac66df237e1057277312932efdbc2d72422c24e4a5a0644e3da
|
File details
Details for the file hashgrid-0.2.8-py3-none-any.whl.
File metadata
- Download URL: hashgrid-0.2.8-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfce94dad35974332ca20fe26a09e695cc41016eadcc1394606dbdb894fd921c
|
|
| MD5 |
bca4aaa7f970eabb9eed640a35c16468
|
|
| BLAKE2b-256 |
9e537c749f400707e1661331713b4751553961aa59bccab61c208c7754e7a469
|