def start(self): print("Server Started. Waiting for connections...") while True: conn, addr = self.server.accept() self.handle_client(conn, addr)