mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-28 07:20:09 +01:00
10 lines
262 B
Python
10 lines
262 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
|
||
|
|
import dbus
|
||
|
|
|
||
|
|
bus = dbus.Bus()
|
||
|
|
remote_service = bus.get_service("org.designfu.SampleService")
|
||
|
|
remote_object = remote_service.get_object("/MyObject", "org.designfu.SampleInterface")
|
||
|
|
|
||
|
|
remote_object.HelloWorld("Hello from example-client.py!")
|