Metadata-Version: 2.4
Name: pysilentwave
Version: 0.1.2
Summary: API client for TheSilentWave devices
Home-page: https://github.com/thesilentwave/pysilentwave
Author: TheSilentWave
Author-email: TheSilentWave <mail@thesilentwave.de>
License: MIT
Project-URL: Homepage, https://github.com/thesilentwave/pysilentwave
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.8.0
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# PySilentWave

![PyPI](https://img.shields.io/pypi/v/pysilentwave)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/thesilentwave/pysilentwave/Publish%20to%20PyPI)

API client for TheSilentWave devices.

## Installation

```bash
pip install pysilentwave
```

## Usage

```python
import asyncio
from pysilentwave import SilentWaveClient

async def main():
    client = SilentWaveClient("192.168.1.100")
    status = await client.get_status()
    print(f"Device status: {status}")

asyncio.run(main())
```

## Requirements

- Python 3.9 or higher
- aiohttp 3.8.0 or higher

## License

MIT
