summaryrefslogtreecommitdiff
path: root/test/show-introspection
blob: 9acdd1124eb7145fcb67d1dabb4d1603108bfd25 (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.freedesktop.connman', '/'),
				'org.freedesktop.DBus.Introspectable')

print object.Introspect()

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

interfaces = manager.ListInterfaces()

for path in interfaces:
	object = dbus.Interface(bus.get_object('org.freedesktop.connman', path),
					'org.freedesktop.DBus.Introspectable')

	print object.Introspect()