Metadata-Version: 2.4
Name: roselime
Version: 0.1.1
Summary: Roselime Python SDK for the control plane and outbound send plane
License-Expression: MIT
Project-URL: Homepage, https://roselime.dev
Project-URL: Repository, https://github.com/primitivedotdev/roselime
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: attrs>=25.3.0
Requires-Dist: httpx>=0.28.1
Requires-Dist: python-dateutil>=2.9.0

# roselime

Roselime's Python SDK for the control plane and outbound send plane.

## Install

```bash
pip install roselime
```

## Example

```python
from roselime import create_client, create_text_email, send_email_sync

client = create_client(api_key="rl_test_123")

response = send_email_sync(
    client=client,
    request=create_text_email(
        from_address="sender@example.com",
        to=["alice@example.net"],
        subject="hello",
        text="plain text body",
    ),
)

print(response.id)
```
