Metadata-Version: 2.5
Name: dublicator-sdk
Version: 1.0.0
Summary: Official Python SDK for Dublicator — fork your marketing into new profiles.
Project-URL: Homepage, https://dublicator.online
Project-URL: Repository, https://github.com/axelfreeman/dublicator
Author: Axel Freeman
License: MIT
Keywords: dublicator,fork,localization,marketing,mcp,segmentation
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24
Description-Content-Type: text/markdown

# dublicator-sdk

Official Python SDK for [Dublicator](https://dublicator.online) — fork your marketing into new profiles.

## Install

```bash
pip install dublicator-sdk
```

## Quick start

```python
from dublicator_sdk import DublicatorClient

client = DublicatorClient(api_key="your-api-key")

client.profiles()   # available profiles + language layers
client.fork(url="https://example.com", profile="enthusiast", language_layer="everyday")
```

## Sandbox mode

```python
client = DublicatorClient(sandbox=True)
```

## Requirements

- Python 3.9+
- [`httpx`](https://www.python-httpx.dev/) (installed automatically)

## License

MIT
