Pranav Jerry 91be0b0189
Added main.py
This file at the moment contains debugging code.
Changed HACKING.md
2021-07-18 14:07:16 +05:30

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)