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")
# Get ticks and process messages
while True:
await grid.tick()
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 withtick()andnodes()methodsNode- Node withrecv(),send(),update(), anddelete()methodsEdge- Edge data modelUser- User data modelQuota- Quota data modelMessage- Message for recv/send operations
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.4.0.tar.gz
(11.5 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.4.0-py3-none-any.whl
(10.5 kB
view details)
File details
Details for the file hashgrid-0.4.0.tar.gz.
File metadata
- Download URL: hashgrid-0.4.0.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3504921be565ba07172b022c5d7a0d7427daaa9ffa1182499546d24ea2bf145e
|
|
| MD5 |
f0fe6d61876eeedb16ca779ea3bcd6c1
|
|
| BLAKE2b-256 |
8425a3de7bc2a84c1c7fad8290fb05226aa78acdd021c7b5c2bbc4348c73fe92
|
File details
Details for the file hashgrid-0.4.0-py3-none-any.whl.
File metadata
- Download URL: hashgrid-0.4.0-py3-none-any.whl
- Upload date:
- Size: 10.5 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 |
b0ec6de547998e58844df62a108a1711718ff9a103ded2596f8c2fc2d52adb12
|
|
| MD5 |
74933c1848908c2a65a46ff5d14e4456
|
|
| BLAKE2b-256 |
db20fe7c9675857063b986181be96376b4603abeb164579adce17d059b4f9492
|