Api wrapper for Asuswrt https://www.asus.com/ASUSWRT/
Project description
Small wrapper for asuswrt.
How to run tests
python setup.py test
Credits:
@mvn23 @halkeye @maweki @quarcko @wdullaer
Info
There are many different versions of asuswrt and sometimes they just dont work in current implementation. If you have a problem with your specific router open an issue, but please add as much info as you can and atleast:
- Version of router
- Version of Asuswrt
Known issues
Bugs
You can always create an issue in this tracker. To test and give us the information needed you could run:
#!/usr/bin/env python
import asyncio
import logging
import sys
from aioasuswrt.asuswrt import AsusWrt
component = AsusWrt('192.168.1.1', 22, username='****', password='****')
logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)
logger = logging.getLogger(__name__)
async def print_data():
logger.debug("wl")
logger.debug(await component.connection.async_run_command('for dev in `nvram get wl_ifnames`; do wl -i $dev assoclist; done'))
dev = await component.async_get_wl()
logger.debug(dev)
logger.debug("arp")
logger.debug(await component.connection.async_run_command('arp -n'))
dev.update(await component.async_get_arp())
logger.debug(dev)
logger.debug("neigh")
logger.debug(await component.connection.async_run_command('ip neigh'))
dev.update(await component.async_get_neigh(dev))
logger.debug(dev)
logger.debug("leases")
logger.debug(await component.connection.async_run_command('cat /var/lib/misc/dnsmasq.leases'))
dev.update(await component.async_get_leases(dev))
logger.debug(dev)
loop = asyncio.get_event_loop()
loop.run_until_complete(print_data())
loop.close()
Coffeefund: 1Huz6vNN6drX3Fq1sU98wPqNSdMPvkMBJG
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aioasuswrt-1.4.0.tar.gz
(12.1 kB
view hashes)
Built Distribution
aioasuswrt-1.4.0-py3-none-any.whl
(12.1 kB
view hashes)
Close
Hashes for aioasuswrt-1.4.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03468e196890a82c7a85be5c877cd3e0cde1a1d262cbfb32da0b866ae7d99c2b |
|
MD5 | 4fb95e18dfd93edbe52ce0f182f3503d |
|
BLAKE2b-256 | fec6bae82acca566d320ffdb610fcf455f84fe5672da697f21df1d56761a7ebd |