summaryrefslogtreecommitdiffstats
path: root/python/examples/example-client.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/example-client.py')
-rw-r--r--python/examples/example-client.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/python/examples/example-client.py b/python/examples/example-client.py
deleted file mode 100644
index 0038b2db..00000000
--- a/python/examples/example-client.py
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env python
-
-import dbus
-
-bus = dbus.Bus()
-remote_service = bus.get_service("org.designfu.SampleService")
-remote_object = remote_service.get_object("/SomeObject",
- "org.designfu.SampleInterface")
-
-hello_reply = remote_object.HelloWorld("Hello from example-client.py!")
-
-print (hello_reply)