Metadata-Version: 2.1
Name: tenda
Version: 0.0.8
Summary: Unofficial Tenda Model N301 API
Home-page: https://github.com/talhabalaj/tenda-n301-api-python
Author: Talha Balaj
Author-email: talhabalaj@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

# 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('<ip_address>', '<your_password>')

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

# Set QOS
manager.block_device('<some_mac_address>')

# Reboot 
manager.reboot()
```


