#!/usr/bin/python3 from socket import * from struct import * from sys import argv, exit if(len(argv) < 2): print("No port specified") exit(1) try: port = int(argv[1]) except: print("Port cannot be converted to an integer") exit(1) skt = socket(AF_INET, SOCK_STREAM) skt.connect(("isoptera.lcsc.edu", port)) v = skt.recv(5, MSG_WAITALL) print(v) print(unpack("