blob: 20e8a50c07f57d4e1a059d966b6afddbc279cd7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/python
import dbus
bus = dbus.SystemBus()
object = dbus.Interface(bus.get_object("net.connman", '/'),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()
manager = dbus.Interface(bus.get_object("net.connman", "/"),
"net.connman.Manager")
properties = manager.GetProperties()
for path in properties["Technologies"]:
object = dbus.Interface(bus.get_object("net.connman", path),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()
|