mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2025-01-10 00:37:49 +05:30
17 lines
286 B
Python
17 lines
286 B
Python
#!/usr/bin/env python3
|
|
|
|
# This file should import libraries and do
|
|
# what /usr/bin/naxalnet used to do
|
|
|
|
# TODO: change to naxalnet.iwd
|
|
from iwd import IWD, Device
|
|
|
|
iwd = IWD()
|
|
devices = iwd.get_devices()
|
|
|
|
print("Devices:", devices)
|
|
|
|
for i in devices:
|
|
dev = Device(i)
|
|
print(dev)
|