Skip to content

Instantly share code, notes, and snippets.

@4thel00z
Created August 9, 2018 00:24
Show Gist options
  • Save 4thel00z/b94da679b117374211b24edf7060ab64 to your computer and use it in GitHub Desktop.
Save 4thel00z/b94da679b117374211b24edf7060ab64 to your computer and use it in GitHub Desktop.
DBus Method call convenience function
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