Skip to main content
replaced http://unix.stackexchange.com/ with https://unix.stackexchange.com/
Source Link

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

This is 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? It is ok if the answer does not involve python although it is preferred.

I am using Ubuntu 14.04

This is 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? It is ok if the answer does not involve python although it is preferred.

I am using Ubuntu 14.04

re-tag
Link
don_crissti
  • 85.6k
  • 31
  • 234
  • 262
added 73 characters in body
Source Link
user768421
  • 483
  • 2
  • 5
  • 7

This is 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? It is ok if the answer does not involve python although it is preferred.

I am using Ubuntu 14.04

This is 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

This is 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? It is ok if the answer does not involve python although it is preferred.

I am using Ubuntu 14.04

deleted 9 characters in body
Source Link
user768421
  • 483
  • 2
  • 5
  • 7
Loading
Source Link
user768421
  • 483
  • 2
  • 5
  • 7
Loading