Un semplice esempio che ne illustra un uso tipico:
import getpass import sys import telnetlib HOST = "localhost" user = raw_input("Inserisci il tuo account remoto: ") password = getpass.getpass() tn = telnetlib.Telnet(HOST) tn.read_until("login: ") tn.write(user + "\n") if password: tn.read_until("Password: ") tn.write(password + "\n") tn.write("ls\n") tn.write("exit\n") print tn.read_all()