Metadata-Version: 2.4
Name: boundry-sdk
Version: 0.1.3
Summary: The official Python SDK for Boundry regional email
Home-page: 
Author: OpenAPI Generator community
Author-email: Boundry <hello@boundry.dev>
License-Expression: MIT
Project-URL: Homepage, https://boundry.dev
Project-URL: Documentation, https://boundry.dev/docs/sdks/python
Project-URL: Repository, https://github.com/flindev/boundry-python
Project-URL: Issues, https://github.com/flindev/boundry-python/issues
Keywords: boundry,email,regional,sdk
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3<3,>=2.2
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2.11
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author
Dynamic: license-file

# Boundry Python SDK

```bash
pip install boundry-sdk
```

```python
import os
from boundry import Boundry

client = Boundry(api_key=os.environ["BOUNDRY_API_KEY"])

email = client.emails.send({
    "from": "hello@example.com",
    "to": "person@example.net",
    "subject": "Hello from Boundry",
    "html": "<strong>Hello</strong>",
})

print(email.id)
```

The complete generated API is also available as `client.api`.
