diff options
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) |