File size: 700 Bytes
bde2f3a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | """rugmunch_sdk — friendly Python wrapper around the RMI API.
v4.0 Sovereign-first. Auto-generated from /openapi.json then wrapped
with a friendly ergonomic interface.
Quick start:
>>> from rugmunch_sdk import RMI
>>> client = RMI(base_url="https://api.rugmunch.io", api_key="...")
>>> risk = await client.get_token_risk(chain="solana", address="Dez...")
>>> print(risk.tier, risk.score)
"""
from .client import RMI, RMI_sync, SyncRMI
from .models import (
McpTool,
NewsItem,
RagHit,
Report,
TokenRisk,
)
__version__ = "0.1.0"
__all__ = [
"RMI",
"McpTool",
"NewsItem",
"RMI_sync",
"RagHit",
"Report",
"SyncRMI",
"TokenRisk",
]
|