Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have narrowed the error down to the line that is causing it but I have no idea why it is doing it, could someone please point out my mistake ?

#!/usr/bin/env python

from socket import *
from threading import Thread
import sys

def recv():
    while True:
        data = tcpCliSock.recv(BUFSIZE)
        if not data: sys.exit(0)
        print data


if __name__ == "__main__":
    HOST = 'localhost'
    PORT = 1234
    BUFSIZE = 1024
    ADDR = (HOST, PORT)

    tcpCliSock = socket(AF_INET, SOCK_STREAM)
    tcpCliSock.connect(ADDR)

    Thread(target=recv).start()
    tcpCliSock.send("{'username':'joe'}")#  < ------   THIS IS THE LINE 
    while True:
        data = raw_input('>')
        tcpCliSock.send(data)
share|improve this question
Did tcpCliSock.connect succeed? – fork0 Oct 9 '12 at 14:22
Yes, I have a server running that I connect to and the connection is successful – lilroo Oct 9 '12 at 14:23
5  
What do you mean by "EOF error"? Please, python generates some nice traceback, so please do write the complete traceback in your question. – Bakuriu Oct 9 '12 at 14:25
2  
You want to use the sendall method on the socket, not send. See docs.python.org/library/socket.html#socket.socket.sendall. Also, as send/sendall cannot generate and EOFError that error is actually coming from raw_input, and you're getting it in Textmate because it is closing the standard input to the program. You should try to debug this at the terminal as much as possible. Have you tried replacing your server with a known good socket listener such as nc? (developer.apple.com/library/mac/#DOCUMENTATION/Darwin/Reference/…) – Constantine Oct 9 '12 at 14:53
1  
Misread the server comment above, I just ran it against a simple server that keeps sending back "Hello" and logs what it receives, i.e. the raw_inputs. Seems to be working as expected on terminal. – Abhishek Mishra Oct 9 '12 at 14:57
show 4 more comments

closed as too localized by EJP, bažmegakapa, hochl, Emil Vikström, Zuul Oct 10 '12 at 11:56

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.