#!/usr/bin/python3 from socket import * skt = socket(AF_INET, SOCK_STREAM) skt.connect(("isoptera.lcsc.edu", 5051)) message = skt.recv(200) print(message) skt.send(b"We're doing ok") skt.close()