Metadata-Version: 2.4
Name: entirius-py-synerise-sdk
Version: 2.0.0
Summary: Synerise CDP REST API SDK
Project-URL: Repository, https://github.com/entirius/entirius-py-synerise-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

# synerise-sdk

Synerise CDP SDK — workspace authentication and customer profile sync over the Synerise REST API.

## Installation

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

## Usage

```python
from synerise_sdk import SyneriseClient
from synerise_sdk.dto.profile import Profile

client = SyneriseClient(subdomain="https://api.synerise.com", api_key="...")
client.get_workspace_token()
client.get_profile_create(Profile(email="user@example.com", uuid="...").asdict())
```

## Development

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

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

## License

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