Metadata-Version: 2.4
Name: entirius-py-edrone-sdk
Version: 2.0.0
Summary: edrone marketing automation REST API SDK
Project-URL: Repository, https://github.com/entirius/entirius-py-edrone-sdk
Author: Entirius
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: requests>=2.28.1
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

# edrone-sdk

edrone marketing automation SDK — customer subscription sync over the edrone REST API.

## Installation

```shell
pip install entirius-py-edrone-sdk
```

## Usage

```python
from edrone_sdk.services.client import EdroneClient
from edrone_sdk.dto.customer import SubscribeEdrone

edrone = EdroneClient(app_id="...")
response, ok = edrone.sub_or_unsub_customer_subscription(
    sub_data=SubscribeEdrone(email="user@example.com", subscriber_status=0),
)
```

## Development

```shell
make install     # sync dependencies (uv)
make check       # lint + format check (ruff)
make test        # test suite (pytest) — integration test skipped without EDRONE_APP_ID
```

Development and agent instructions: [AGENTS.md](AGENTS.md).

## License

Mozilla Public License 2.0 — see [LICENSE](LICENSE).
