Metadata-Version: 2.4
Name: aionatureremo
Version: 0.2.0
Summary: Asynchronous Python client for the Nature Remo Cloud API
Project-URL: Repository, https://github.com/tnj/aionatureremo
Project-URL: Issues, https://github.com/tnj/aionatureremo/issues
Author: Yuki Fujisaki
License-Expression: MIT
License-File: LICENSE
Keywords: home-automation,nature,nature-remo,remo
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Home Automation
Requires-Python: >=3.12
Requires-Dist: aiohttp>=3.10.0
Description-Content-Type: text/markdown

# aionatureremo

Asynchronous Python client for the [Nature Remo Cloud API](https://developer.nature.global/).

Built for Home Assistant: aiohttp session injection, fully typed, no dependencies beyond aiohttp.

## Usage

```python
import aiohttp
from aionatureremo import NatureRemoClient

async with aiohttp.ClientSession() as session:
    client = NatureRemoClient("YOUR_ACCESS_TOKEN", session)
    devices = await client.get_devices()
```

Get an access token at https://home.nature.global/.
