Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 544 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 544 Bytes

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 of Home Assistant.

Simple example

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))