Metadata-Version: 2.4
Name: rtm-sdk
Version: 1.0.0
Summary: Official Python SDK for Raptoreum (RTM) JSON-RPC API
Home-page: https://github.com/Raptor3um/rtm-sdk
Author: Raptoreum Developers
Author-email: dev@raptoreum.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# Raptoreum (RTM) SDK - Python

A lightweight, zero-dependency Python client wrapper for the Raptoreum Core JSON-RPC interface.

---

## Installation

You can install this SDK from PyPI:
```bash
pip install rtm-sdk
```

Or install it locally from source:
```bash
cd python
pip install -e .
```

---

## Quick Start

```python
from raptoreum import RaptoreumClient

# Initialize the client
client = RaptoreumClient(
    host="127.0.0.1",
    port=8766,
    user="your_rpc_user",
    password="your_rpc_password"
)

# Fetch blockchain info
info = client.getblockchaininfo()
print(f"Current Block Height: {info['blocks']}")

# Get wallet balance
balance = client.getbalance()
print(f"Hot Wallet Balance: {balance} RTM")
```
