This is a follow-up question to A list of available D-Bus servicesA 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? It is ok if the answer does not involve python although it is preferred.
I am using Ubuntu 14.04