> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ralphstudio.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Python SDK

> The Ralph Studio Python SDK coming soon.

<Warning>
  The Python SDK is currently in development and not yet available. This page
  will be updated with full documentation on release.
</Warning>

The Ralph Studio Python SDK will be available on PyPI and will support both sync and async usage patterns.

## Planned API

```python theme={null}
from ralph_studio import RalphStudio

client = RalphStudio(
    api_key="rsk_live_...",
    slug="my-alephium-node",
)

# Get address balance
balance = client.addresses.get_balance("1DrDyTr9...")
print(balance.alph)  # "2.5" — human readable

# Call a contract view function
result = client.contracts.call(
    address="27Gsc5...",
    method_index=0,
    args=[],
)

# Async usage
import asyncio
from ralph_studio.async_client import AsyncRalphStudio

async def main():
    async with AsyncRalphStudio(api_key="rsk_live_...", slug="my-node") as client:
        balance = await client.addresses.get_balance("1DrDyTr9...")

asyncio.run(main())
```

## In the meantime

Use the HTTP API directly with the `requests` library. The [quickstart guide](/guides/first-request) has working Python examples for every common operation.
