Simplest way to run an Expect script from Python

2019-01-23 18:04发布

I'm trying to instruct my Python installation to execute an Expect script "myexpect.sh":

#!/usr/bin/expect
spawn ssh usr@myip
expect "password:"
send "mypassword\n";
send "./mycommand1\r"
send "./mycommand2\r"
interact

I'm on Windows so re-writing the lines in the Expect script into Python are not an option. Any suggestions? Is there anything that can run it the way "./myexpect.sh" does from a bash shell?


I have had some success with the subprocess command:

subprocess.call("myexpect.sh",  shell=True)

I receive the error:

myexpect.sh is not a valid Win32 application.

How do I get around this?

2条回答
爷的心禁止访问
2楼-- · 2019-01-23 18:32

Since it is an .expect script, I think you should change the extend name of your script.

Instead of using

subprocess.call("myexpect.sh", shell=True)

you should use

subprocess.call("myexpect.expect", shell=True)
查看更多
\"骚年 ilove
3楼-- · 2019-01-23 18:41

Use the pexpect library. This is the Python version for Expect functionality.

Example:

child = pexpect.spawn('Some command that requires password')
child.expect('Enter password:')
child.sendline('password')
child.expect(pexpect.EOF, timeout=None)
cmd_show_data = child.before
cmd_output = cmd_show_data.split('\r\n')
for data in cmd_output:
    print data

Pexpect comes with lots of examples to learn from. For use of interact(), check out script.py from examples:

(For Windows, there is an alternative to pexpect.)

查看更多
登录 后发表回答