blob: bbf93c8b6a2fe74dd8e9f991fc16946ea92d3c8a (
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("org.moblin.connman", '/'),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()
manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
"org.moblin.connman.Manager")
properties = manager.GetProperties()
for path in properties["Devices"]:
object = dbus.Interface(bus.get_object("org.moblin.connman", path),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()
|