feat: add meshnet python sdk

This commit is contained in:
Dobromir Popov
2026-06-29 10:29:19 +03:00
parent e9c9bf63bc
commit 3286f77e27
10 changed files with 850 additions and 87 deletions

View File

@@ -1,3 +1,19 @@
"""meshnet — Distributed Inference Network Python SDK."""
from .client import (
Client,
CostEstimate,
RedundantRequestResult,
TopUpQuote,
WalletBalance,
)
__version__ = "0.1.0"
__all__ = [
"Client",
"CostEstimate",
"RedundantRequestResult",
"TopUpQuote",
"WalletBalance",
]