Metadata-Version: 2.4
Name: ditto-client
Version: 0.1.0
Summary: Eclipse Ditto Python Client
Project-URL: repository, https://github.com/ksachdeva/ditto-client
Author: Sachdeva, Kapil
License-File: LICENSE
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: httpx>=0.28.1
Requires-Dist: microsoft-kiota-abstractions>=1.9.7
Requires-Dist: microsoft-kiota-http>=1.9.7
Requires-Dist: microsoft-kiota-serialization-form>=1.9.7
Requires-Dist: microsoft-kiota-serialization-json>=1.9.7
Requires-Dist: microsoft-kiota-serialization-multipart>=1.9.7
Requires-Dist: microsoft-kiota-serialization-text>=1.9.7
Requires-Dist: pydantic-settings>=2.9.1
Requires-Dist: pydantic>=2.11.5
Description-Content-Type: text/markdown

# Eclipse Ditto Client

Eclipse Ditto Project - https://eclipse.dev/ditto/index.html

This repository is the python client generated using Microsoft Kiota ([https://github.com/microsoft/kiota-python](https://github.com/microsoft/kiota-python))

## Install

```bash
uv add ditto-client
```

## Basic Authentication

Default setup for Ditto uses Ngix with basic authentication.

A custom authentication provider (src/ditto_client/basic_auth.py) has been included to support it.

[See examples/basic.py for the usage](examples/basic.py)
