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

# Python SDK

> Coming Soon - Official Python SDK for Transmit

## Coming Soon

<Info>
  We're launching with the TypeScript SDK first. The Python SDK is currently under development—use our REST API directly or explore the TypeScript SDK while we finish it up.
</Info>

## Work in Progress

We're actively developing an official Python SDK for Transmit. Once released, it will include:

* Full API coverage with type hints
* Async/await support
* Context manager support
* Error handling
* Comprehensive documentation

## Use the API Instead

While we work on the Python SDK, you can use the Transmit API directly with your favorite HTTP library:

```python theme={null}
import requests

headers = {
    "Authorization": f"Bearer {os.environ.get('TRANSMIT_API_KEY')}",
    "Content-Type": "application/json"
}

response = requests.post(
    "https://api.transmit.dev/v1/emails",
    headers=headers,
    json={
        "from": "hello@yourdomain.com",
        "to": "user@example.com",
        "subject": "Hello",
        "html": "<h1>Hello World</h1>"
    }
)

print(response.json())
```

## Resources

<CardGroup cols={2}>
  <Card title="API Reference" href="/api-reference/introduction">
    Complete API documentation
  </Card>

  <Card title="TypeScript SDK" href="/sdks/typescript">
    Check out our TypeScript SDK
  </Card>

  <Card title="Quickstart" href="/quickstart">
    Get started with the API
  </Card>

  <Card title="GitHub" icon="github" href="https://github.com/transmit-dev">
    Join our community
  </Card>
</CardGroup>
