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)