Python Pexpect
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Pexpect相关的知识,希望对你有一定的参考价值。
Pexpect 是一个用来启动子程序并对其进行自动控制的纯 Python 模块。 Pexpect 可以用来和像 ssh、ftp、passwd、telnet 等命令行程序进行自动交互。def ssh_cmd(ip, user, passwd, cmd):
result = ‘‘
ssh = pexpect.spawn(‘ssh %[email protected]%s "%s"‘ % (user, ip, cmd))
try:
i = ssh.expect([‘password:‘, ‘continue connecting (yes/no)?‘], timeout=5)
if i == 0:
ssh.sendline(passwd)
elif i == 1:
ssh.sendline(‘yes\n‘)
ssh.expect(‘password: ‘)
ssh.sendline(passwd)
result = ssh.read()
except pexpect.EOF:
print ‘EOF for %s‘ % (ip)
ssh.close()
except pexpect.TIMEOUT:
print ‘TIMEOUT for %s‘ % (ip)
ssh.close()
ssh.close()
return result
本文出自 “12028998” 博客,请务必保留此出处http://12038998.blog.51cto.com/12028998/1857633
以上是关于Python Pexpect的主要内容,如果未能解决你的问题,请参考以下文章
Python????????????????????????python???????????????
[Python]?????????Python?????????2???(???????????????)????????????????????????