Metadata-Version: 2.5
Name: rishun-api
Version: 0.1.0
Summary: An async client for Rishun cloud API (smart home control)
Author-email: Rishun <quanxiumei@gzrishun.com>
License: MIT
License-File: LICENSE
Classifier: Framework :: AsyncIO
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: <4.0,>=3.8
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: async-timeout>=4.0.0
Description-Content-Type: text/markdown

# Rishun API Client

异步客户端，用于调用日顺云端 API，支持智能家居设备控制。

## 安装

```bash
pip install rishun-api
```

## 快速使用

```python
import aiohttp
from rishun_api import CloudApiClient

async with aiohttp.ClientSession() as session:
    client = CloudApiClient(session, "https://api.example.com")
    result = await client.check_user("phone", "pwd")
    print(result)
```