Metadata-Version: 2.4
Name: dependal
Version: 1.0.3
Summary: Official Python SDK for the Dependal API.
Home-page: 
Author: Dependal Support
Author-email: Dependal Support <support@dependal.com>
Project-URL: Homepage, https://dependal.com
Project-URL: Documentation, https://dependal.com/docs
Project-URL: Repository, https://github.com/dependal/dependal-py
Keywords: dependal,email,transactional-email,api,sdk
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3<3.0.0,>=2.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author
Dynamic: license-file

[![PyPI](https://img.shields.io/pypi/v/dependal.svg)](https://pypi.org/project/dependal/)
[![Python Versions](https://img.shields.io/pypi/pyversions/dependal.svg)](https://pypi.org/project/dependal/)

# Dependal Python SDK

Official Python SDK for the **Dependal transactional email API**.

Dependal is a developer-first email delivery platform focused on
reliable transactional email, clear delivery logs, and predictable
pricing.

------------------------------------------------------------------------

## Installation

Install the SDK using pip:

``` bash
pip install dependal
```

------------------------------------------------------------------------

## Quick Start

``` python
from dependal import ApiClient, Configuration
from dependal.api.messages_api import MessagesApi

config = Configuration(
    host="https://api.dependal.com",
    api_key={"x-api-key": "dp-xxxxxxxxx"}
)

with ApiClient(config) as client:
    api = MessagesApi(client)

    api.send_email({
        "to": "user@example.com",
        "from": "Dependal <noreply@dependal.com>",
        "subject": "Hello",
        "html": "<p>This email was sent using Dependal.</p>"
    })
```

------------------------------------------------------------------------

## Documentation

Full documentation is available at:

https://dependal.com/docs

------------------------------------------------------------------------

## Features

-   Simple transactional email API\
-   Reliable delivery through Amazon SES\
-   Detailed email logs and event tracking\
-   Suppression handling\
-   Predictable developer-friendly pricing

------------------------------------------------------------------------

## Support

If you need help, contact:

support@dependal.com

------------------------------------------------------------------------

Built by **Dependal**.
