summaryrefslogtreecommitdiff
path: root/test/list-profiles
blob: 9a68d20e51ba5510d30324f7f9ce87f571e0de78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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["Profiles"]:
	print "[ %s ]" % (path)

	profile = dbus.Interface(bus.get_object("org.moblin.connman", path),
						"org.moblin.connman.Profile")

	properties = profile.GetProperties()
	for key in properties.keys():
		if key in ["Services"]:
			list = ""
			for path in properties["Services"]:
				val = str(path)
				list = list + val[val.rfind("/") + 1:] + " "
			print "    Services = [ %s]" % (list)
		else:
			print "    %s = %s" % (key, properties[key])

	print