Metadata-Version: 2.4
Name: pysaltsentry
Version: 0.1.2
Summary: Async Python client for the Salt Sentry water softener sensor
Project-URL: Homepage, https://github.com/Lemcke-solutions/Salt-sentry-ha-integration
License: MIT
Requires-Python: >=3.11
Requires-Dist: aiohttp>=3.9.0
Description-Content-Type: text/markdown

# pysaltsentry

Async Python client for the [Salt Sentry](https://github.com/Lemcke-solutions/Salt-sentry-ha-integration) water softener sensor.

## Installation

```bash
pip install pysaltsentry
```

## Usage

```python
import aiohttp
from pysaltsentry import SaltSentryDevice

async with aiohttp.ClientSession() as session:
    device = SaltSentryDevice("192.168.1.100", session)
    status = await device.get_status()
    print(status.measurement_cm)
    print(status.firmware_version)
```

## License

MIT
