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
- Host: GitHub
- URL: https://github.com/talhabalaj/tenda-n301-api-python
- Owner: talhabalaj
- License: gpl-3.0
- Created: 2018-09-12T07:16:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-02T14:25:34.000Z (over 2 years ago)
- Last Synced: 2024-11-06T19:11:45.359Z (over 1 year ago)
- Topics: api, automation, n301, python, tenda
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 16
- Watchers: 4
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
```