Metadata-Version: 2.4
Name: nr5103e-sdk
Version: 1.0.1
Summary: SDK for interacting with the Zyxel NR5103E router.
Author-email: Gary Fernie <g@ryfernie.me>
Requires-Python: >=3.13
Requires-Dist: aiohttp>=3.9.0
Description-Content-Type: text/markdown

# NR5103E SDK

A Python SDK for interacting with Zyxel NR5103E routers. It handles login, sessions, and basic router queries.

## Quick Start

### Installation

```sh
pip install nr5103e-sdk
```

### Usage Example

```python
import asyncio
from nr5103e_sdk.client import Client

async def main():
    async with Client("admin_password") as client:
        await client.user_login()
        status = await client.cellwan_status()
        print(f"Cell ID: {status['INTF_Cell_ID']}")

asyncio.run(main())
```

