Created
August 9, 2018 00:24
-
-
Save 4thel00z/b94da679b117374211b24edf7060ab64 to your computer and use it in GitHub Desktop.
DBus Method call convenience function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dbus | |
def call_dbus(bus :"dbus.SystemBus", service_name:str, object_path:str, member:str, interface_name:str, *args, **kwargs): | |
""" | |
This is a convenience function, which you can use to call a DBus method on either Bus (Session/System). | |
:param bus: | |
:param service_name: | |
:param object_path: | |
:param member: | |
:param interface_name: | |
:param args: | |
:param kwargs: | |
:return: | |
""" | |
service = bus.get_object(service_name, object_path) | |
method = service.get_dbus_method(member, interface_name) | |
return method(*args, **kwargs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment