python中的telnetlib不能产生输出?

时间:2015-11-19 00:26:22

标签: python telnet telnetlib

我正在尝试使用以下脚本:

import telnetlib

server = telnetlib.Telnet('mail.optonline.net', '25')
server.write('EXIT\n')
print server.read_all()

但是,它没有显示任何内容(即使我删除了server.write)。顺便说一句,这是退出telnet服务器的方法,使用EXIT(然后输入)。

1 个答案:

答案 0 :(得分:0)

来自falsetru的SMTPLIB模块完美无缺。谢谢,假的!