Skip to main content
1 of 5
user768421
  • 483
  • 2
  • 5
  • 7

How to list all object paths under a dbus service?

This is actually a follow-up question to A list of available D-Bus services.

The following python code will list all available DBus services.

import dbus
for service in dbus.SystemBus().list_names():
    print(service)

How do we list out the object paths under the services in python?

I am using Ubuntu 14.04

user768421
  • 483
  • 2
  • 5
  • 7