I'm about to work on an implementation of mpris. But currently I am not sure how to read/write dbus interface properties with python-dbus. Is there any examples for this ?
1 Answer
Finally got the answer:
@dbus.service.method(dbus.PROPERTIES_IFACE, in_signature='ss', out_signature='v')
def Get(self, interface, prop):
...
@dbus.service.method(dbus.PROPERTIES_IFACE, in_signature='ssv')
def Set(self, interface, prop, value):
...
@dbus.service.method(dbus.PROPERTIES_IFACE, in_signature='s', out_signature='a{sv}')
def GetAll(self, interface):
...
1 Comment
Sam De Meyer
Hi, could you tell me how you found (link maybe)?