3 Below are a few examples of how to use Panucci over D-Bus, please see
4 doc/dbus-api.txt for a complete list of available functions.
7 dbus-send --type=method_call --dest=org.panucci.panucciInterface \
8 /panucciInterface org.panucci.panucciInterface.playPause
11 python -c "import dbus; dbus.SessionBus().get_object( \
12 'org.panucci.panucciInterface', '/panucciInterface').playPause()"
16 session_bus = dbus.SessionBus()
17 panucci_interface = session_bus.get_object(
18 'org.panucci.panucciInterface', '/panucciInterface')
19 panucci_interface.playPause()