In all python dbus documentations there are info on how to export objects, interfaces, signals, but there is nothing how to export interface property.
Any ideas how to do that ?
Regards, Levon
|
|
It's definitely possible to implement D-Bus properties in Python! D-Bus properties are just methods on a particular interface, namely
dbus-python ought to make it easier to implement properties, but it currently is very lightly maintained at best. If someone fancied diving in and helping fix up stuff like this, they'd be most welcome. Even adding an expanded version of this boilerplate to the documentation would be a start, as this is quite a frequently asked question. If you're interested, patches could be sent to the D-Bus mailing list, or attached to bugs filed against dbus-python on the FreeDesktop bugtracker. |
|||
|
this example does not work I think because : ''' The available properties and whether they are writable can be determined by calling org.freedesktop.DBus.Introspectable.Introspect, see the section called “org.freedesktop.DBus.Introspectable”. ''' and in introspection data the property are missing: I use dbus-python-1.1.1 |
|||
|