1#!/usr/bin/python
2
3import dbus
4
5bus = dbus.SystemBus()
6
7object = dbus.Interface(bus.get_object("org.chromium.dhcpcd", '/'),
8				"org.freedesktop.DBus.Introspectable")
9print object.Introspect()
10