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.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/examples/example-client.py b/python/examples/example-client.py
index b3b22f56..0270ed6c 100644
--- a/python/examples/example-client.py
+++ b/python/examples/example-client.py
@@ -9,4 +9,13 @@ remote_object = remote_service.get_object("/SomeObject",
hello_reply_list = remote_object.HelloWorld("Hello from example-client.py!")
+hello_reply_tuple = remote_object.GetTuple()
+
+hello_reply_dict = remote_object.GetDict()
+
print (hello_reply_list)
+
+print str(hello_reply_tuple)
+
+print str(hello_reply_dict)
+