summaryrefslogtreecommitdiff
path: root/test/list-devices
blob: d7b9331de98e76269c66ec291fc79704bf610438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python

import dbus

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
					"org.moblin.connman.Manager")

properties = manager.GetProperties()

for path in properties["Devices"]:
	element = dbus.Interface(bus.get_object("org.moblin.connman", path),
						"org.moblin.connman.Element")

	properties = element.GetProperties()

	print "[ %s ]" % (path)

	for key in properties.keys():
		print "    %s = %s" % (key, properties[key])

	print