An open API service indexing awesome lists of open source software.

https://github.com/talhabalaj/tenda-n301-api-python

Unofficial Tenda Model N301 Python API
https://github.com/talhabalaj/tenda-n301-api-python

api automation n301 python tenda

Last synced: 11 months ago
JSON representation

Unofficial Tenda Model N301 Python API

Awesome Lists containing this project

README

          

# tenda
Unofficial Tenda Model N301 API

Install it using:
```s
$ pip install tenda
```

These are the function currently available.

```python
import tenda

manager = tenda.TendaManager('', '')

# Get QOS
online_devices = manager.get_online_devices_with_stats()
blocked_devices = manager.get_black_list()

# Set QOS
manager.block_device('')

# Reboot
manager.reboot()
```