diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-12-21 20:19:34 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2008-12-21 20:19:34 +0100 |
commit | 7258d34ab4d1b1f55c3b52944a0b5264111ad3a2 (patch) | |
tree | b913be252f4d82ee18d20ffa9c1f84c78b9772f6 /skype/client.py | |
parent | 56ae398cc2d137b669a6ef13f4a5969a9d92b70f (diff) |
replace client.py with client.sh which provides more interactivity
Diffstat (limited to 'skype/client.py')
-rw-r--r-- | skype/client.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/skype/client.py b/skype/client.py deleted file mode 100644 index 62686c22..00000000 --- a/skype/client.py +++ /dev/null @@ -1,7 +0,0 @@ -import socket, sys - -client = socket.socket ( socket.AF_INET, socket.SOCK_STREAM ) -client.connect ( ( 'localhost', 2727 ) ) - -client.send(sys.argv[1]) -print client.recv(1024) |