diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-01-16 16:42:17 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-01-16 16:42:17 +0000 |
commit | 4843dede4add1764ced095ecf3e41ecc3a53240e (patch) | |
tree | cea32f881e5760dd417e3e8a0eaf2b3b15ecd32e /python/client.py | |
parent | dfeb2636eb83098ebd621ce2add83ef9e256318f (diff) | |
download | libgats-4843dede4add1764ced095ecf3e41ecc3a53240e.tar.gz libgats-4843dede4add1764ced095ecf3e41ecc3a53240e.tar.bz2 libgats-4843dede4add1764ced095ecf3e41ecc3a53240e.tar.xz libgats-4843dede4add1764ced095ecf3e41ecc3a53240e.zip |
Added networking compatible send/recv functions as helpers, plus a bunch of
docs.
Diffstat (limited to '')
-rwxr-xr-x | python/client.py | 11 |
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 | |||
3 | import gats | ||
4 | import socket | ||
5 | import time | ||
6 | |||
7 | s = socket.create_connection( ('localhost', 5051) ) | ||
8 | gats.send( {'type': 'hello'}, s ) | ||
9 | print gats.recv( s ) | ||
10 | |||
11 | time.sleep( 10 ) | ||