aboutsummaryrefslogtreecommitdiff
path: root/python/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/client.py')
-rwxr-xr-xpython/client.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/python/client.py b/python/client.py
new file mode 100755
index 0000000..53e38fd
--- /dev/null
+++ b/python/client.py
@@ -0,0 +1,11 @@
1#!/usr/bin/python
2
3import gats
4import socket
5import time
6
7s = socket.create_connection( ('localhost', 5051) )
8gats.send( {'type': 'hello'}, s )
9print gats.recv( s )
10
11time.sleep( 10 )