Coming Soon
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.
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:
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": "[email protected]",
"to": "[email protected]",
"subject": "Hello",
"html": "<h1>Hello World</h1>"
}
)
print(response.json())
Resources