blob: 4b6450f0d0e2336c1feb093f23d617cccf36fef0 [file] [log] [blame]
#!/usr/bin/python
import dbus
bus = dbus.SystemBus()
object = dbus.Interface(bus.get_object("net.connman", '/'),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()
manager = dbus.Interface(bus.get_object("net.connman", "/"),
"net.connman.Manager")
technologies = manager.GetTechnologies()
for path, properties in technologies:
object = dbus.Interface(bus.get_object("net.connman", path),
"org.freedesktop.DBus.Introspectable")
print object.Introspect()