Metadata-Version: 2.4
Name: sendy-sdk
Version: 0.1.0
Summary: Python SDK for the Sendy API.
Project-URL: Homepage, https://sendy.lol
Project-URL: Documentation, https://sendy.lol/docs
Project-URL: Repository, https://github.com/mvritz/sendy-sdk
Author: Sendy
License-Expression: MIT
Keywords: sdk,sendy,solana
Requires-Python: >=3.9
Requires-Dist: httpx<1,>=0.27
Requires-Dist: python-socketio[client]<6,>=5.11
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: ruff>=0.5; extra == 'dev'
Requires-Dist: twine>=5.0; extra == 'dev'
Description-Content-Type: text/markdown

# sendy-sdk

Python SDK for Sendy's documented `/api/v2/sdk/*` API key surface.

```bash
pip install sendy-sdk
```

```py
import os
from sendy_sdk import SendyClient

with SendyClient(os.environ["SENDY_API_KEY"]) as client:
    wallets = client.wallets()
```

Async REST and Socket.IO streaming are also available:

```py
import asyncio
import os
from sendy_sdk import AsyncSendyClient

async def main():
    async with AsyncSendyClient(os.environ["SENDY_API_KEY"]) as client:
        socket = await client.connect_wallet_trade_stream("YOUR_WALLET")
        await socket.wait()

asyncio.run(main())
```
