Metadata-Version: 2.4
Name: entirius-py-get-response-sdk
Version: 3.0.0
Summary: GetResponse email marketing & e-commerce REST API SDK
Project-URL: Repository, https://github.com/entirius/entirius-py-get-response-sdk
Author: Entirius
License-Expression: MPL-2.0
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: marshmallow-dataclass>=8.5
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

# get-response-sdk

GetResponse SDK — email marketing and e-commerce (shops, products, carts, orders, contacts) over the GetResponse
REST API v3.

## Installation

```shell
pip install entirius-py-get-response-sdk
```

## Usage

```python
from get_response_sdk import GetResponseClient

client = GetResponseClient()
shops = client.get_resource("shops", api_key="...")
```

The REST API v3 is documented at [apidocs.getresponse.com](https://apidocs.getresponse.com/v3).

## Development

```shell
make install     # sync dependencies (uv)
make check       # lint + format check (ruff)
make test        # test suite (pytest)
```

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

## License

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