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 ?
Asked
Active
Viewed 2,298 times
1 Answers
4
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):
...

Ning Sun
- 2,145
- 1
- 19
- 24
-
1Hi, could you tell me how you found (link maybe)? – Sam De Meyer Aug 19 '15 at 20:11