Metadata-Version: 2.1
Name: zyxel-t50-modem
Version: 0.0.2
Summary: A wrapper for the Zyxel T50 modem
Home-page: https://github.com/SLG/zyxel-t50
Author: SLG
Author-email: github@slbg.nl
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Zyxel T50
A small wrapper for the Zyxel T50 modem.

It can retrieve basic status of the modem and a list of connected devices.
This is used for a [device tracking integration](https://github.com/home-assistant/core/tree/dev/homeassistant/components/zyxelt50) of [Home Assistant](https://www.home-assistant.io/).

# Simple example
```python
import json
from zyxelt50.modem import ZyxelT50Modem


router = ZyxelT50Modem('#YOUR ADMIN PASSWORD#')
router.connect()

status = router.get_connected_devices()
print(json.dumps(status, indent=4))

```


