My client.py file is
import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((socket.gethostname(), 1025)) message = s.recv(1024) # This 102