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

# NR5103E SDK

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

## Quick Start

### Installation

```sh
pip install .
```

### Usage Example

```python
from nr5103e_sdk.client import Client

with Client("admin_password") as client:
    status = client.cellwan_status()
    print(f"Cell ID: {status['INTF_Cell_ID']")
```

## Contributing

### Run Tests

```sh
bin/test
```

### Format Code

```sh
bin/format
```
