Update object variable to match its type
[connman] / test / list-elements
1 #!/usr/bin/python
2
3 import dbus
4
5 bus = dbus.SystemBus()
6
7 manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
8                                         "org.moblin.connman.Manager")
9
10 elements = manager.ListElements()
11
12 for path in elements:
13         print "[ %s ]" % (path)
14
15         element = dbus.Interface(bus.get_object("org.moblin.connman", path),
16                                                 "org.moblin.connman.Element")
17
18         properties = element.GetProperties()
19         for key in properties.keys():
20                 print "    %s = %s" % (key, properties[key])
21
22         print