3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-03 18:08:42 +02:00
iwd/test/scan-for-networks

15 lines
306 B
Plaintext
Raw Normal View History

2016-04-28 01:27:26 +02:00
#!/usr/bin/python3
2015-03-26 06:18:59 +01:00
import sys
import dbus
if (len(sys.argv) != 2):
print("Usage: %s <device>" % (sys.argv[0]))
sys.exit(1)
bus = dbus.SystemBus()
device = dbus.Interface(bus.get_object("net.connman.iwd", sys.argv[1]),
"net.connman.iwd.Device")
device.Scan()