Metadata-Version: 2.4
Name: dooplex
Version: 0.1.0
Summary: Official Python SDK for sending messages with Dooplex.
Author: Dooplex
License-Expression: MIT
Project-URL: Homepage, https://github.com/kluglabs/dooplex
Project-URL: Documentation, https://github.com/kluglabs/dooplex/tree/main/python-sdk
Project-URL: Repository, https://github.com/kluglabs/dooplex
Project-URL: Issues, https://github.com/kluglabs/dooplex/issues
Keywords: dooplex,telegram,messaging,sdk,api
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: build>=1.0; extra == "dev"
Requires-Dist: twine>=5.0; extra == "dev"
Dynamic: license-file

# dooplex

Official Python SDK for sending messages via the Dooplex API.

## Install

```bash
pip install dooplex
```

## Quickstart

```python
from dooplex import DooplexClient

client = DooplexClient(api_key="your-dooplex-api-key")

client.send_message(
    bot_id="00000000-0000-0000-0000-000000000000",
    channel_id="@your_channel",
    text="Hello from dooplex Python SDK",
    parse_mode="Markdown",
)
```

You can also use `DOOPLEX_API_KEY`:

```python
import os
from dooplex import DooplexClient

os.environ["DOOPLEX_API_KEY"] = "your-dooplex-api-key"
client = DooplexClient()
```
