Pexpect is a pure Python module that reads the output of a program and sends input to that program based on output patterns. It can be used to automate interactions with interactive programs. It is inspired by the classic TCL expect program.
1
vote
1answer
23 views
Preventing linewrap when using pexpect / bash
When I execute the following script (simplified example):
#!/usr/bin/env python
import pexpect
spawn = pexpect.spawn('/bin/bash')
with open('/tmp/logfile.log', 'w') as f:
spawn.logfile_read = f
...
1
vote
0answers
16 views
Is it necessary to check the return value of spawn.send in pexpect?
Is it necessary to check the return value of send in pexpect?
The implementation of spawn.send(s) is using something like:
c = os.write(self.child_fd, s)
return c
Where the number of bytes are ...
0
votes
1answer
53 views
pexpect.spawn('sudo ssh somehost') asks for sudo password every time
I have a series of bash scripts that rely on sudo to ssh/scp some host with root privileges.
So I made a python script sshOK that uses pexpect to handle all the nitty gritty of sshing a host, such as ...
1
vote
2answers
43 views
cant telnet from linux pc to windows pc “login Failed error”
I'm trying to telnet from Linux to Windows PC but it's showing error "login failed".
Here is my Python script. I am using pexpect module. I also tried with telnetlib but same error:
import os
import ...
0
votes
1answer
28 views
Python:Telnet password is not taking via script using pexpect
i have an issue while running my telnet script using pexpect.Problem is its taking only username from script not password.Its taking the value of password but its not entering the same.Mentioned below ...
0
votes
1answer
44 views
Python - In Windows, how to intertact with the serial port?
Under Linux, use fdpexpect module to interact with the serial port, such as:
fd = os.open(TTY, os.O_NONBLOCK|os.O_RDWR|os.O_NOCTTY)
child = fdpexpect.fdspawn(fd)
In Windows, how to implement the ...
0
votes
1answer
33 views
How can I pass a string to pexpect spawn?
I want to ssh to another node on my network as part of a larger python script, I am using pexpect which works when I do something like this:
session=spawn('ssh root@172.16.210.254')
I want to ...
1
vote
1answer
73 views
very complex quotes in python/shell string
I have a very long string ssh_cmd, I get it from
cmd = """kill -9 `ps -ef|grep "udp_receiver"|grep -v "grep"|awk '{print $2}'`"""
HostName="133.33.22.1"
ssh_cmd = """ssh -t inria_spoofing@{0} 'sudo ...
0
votes
0answers
65 views
automate scp using expect or Pexpect: how to deal with timeout when downloading
I use Pexect to write a scripts to automate scp
but pexecpt are rarely used by people
so I ask about expect
because it resemble Pexpect very much
and so I can have some ideas
if I use a expect loop ...
-2
votes
1answer
66 views
pexpect prompt for blank space in python [closed]
Can any one please tell me, what is the prompt we have to give for expecting a blank space for a python script.I need to execute a command which will execute only after it sees the expect prompt.On ...
0
votes
4answers
54 views
password expect expression isn't getting matched
I started using the Pexpect library and for some reason I am having problems getting expressions to get matched.
For example in the following code
import pexpect
child=pexpect.spawn('su')
...
0
votes
1answer
46 views
Without exiting from the ssh_tunnel, open new terminal
I am using Python and wxpython for gui. I am trying to connect ssh tunnel. After connecting to ssh, wants a new terminal to open and have to continue my operation in local machine. How to achieve ...
0
votes
1answer
28 views
Mkdir over SSH with Python does not work
I'm trying to create a new dir via SSH with a python script. When i try my commands by using the Python command line it just works. But when I try to do the same by a script it does not create the new ...
0
votes
1answer
34 views
Use Pexpect or expect for a ssh taskļ¼ and how to capture errors
I want to use an expect or Pexpect file to automate a shell command
like:
for host in HostList:
ssh -t kitty@host 'sudo nohup bash -c "./tcp_sender > /dev/null 2>&1 &"'
if I ...
2
votes
1answer
133 views
python pexpect: SSHing then updating the date
I have finally have my python pexpect script working except for the most important part updating the date! I am able to SSH in the box but my second command does not execute properly. I have been ...
1
vote
2answers
105 views
Python - Pxssh - Getting an password refused error when trying to login to a remote server
I'm trying to use the pexpect module pxssh to log in into my one of my server. I get password refused. I think I know what it is the problem, but can't figure out how to fix it. The issue is that ...
0
votes
0answers
47 views
Executing a shellscript with parameters remotely with pexpect/pxssh
I am trying to use pexpect and pxssh to automate some tasks. I am not very familiar with python. I would like to run a shellscript with some arguments on a server. But the shellscript is hosted ...
0
votes
0answers
38 views
how to search pattern after my last input, pexpect in case of interaction scenario
i am using pexpect(a python module) in my automation testing. But pexpect sometime doesn't work as what I expect, my case is that:
telnet to a host
execute command1, and wait for a pattern ...
2
votes
1answer
57 views
pexpect to ignore certain lines in command-line runtime
So I have a script that automatically reboots a device:
In run time:
MASTER> reboot
MASTER>
Are you sure you want to reboot (YES|NO):
!!!!!!!!!!
MASTER>
My code:
...
1
vote
0answers
52 views
Python: Using os command on remote host after using pexpect
Is there a way to use os command on the remote host after remote using pexpect.
import pexpect
import os
tunnel = pexpect.spawn('telnet 192.168.1.10')
tunnel.expect('login')
...
0
votes
1answer
87 views
Python Pass Object between classes
Hi I would like to know how do I pass obeject between classes. I'm going to use my script to first login to our server, next to client server and than to the routers and switches.
Here is the script:
...
0
votes
0answers
94 views
Python Pexpect: using spawn to SSH and run a command
I have a script where I am sshing into multiple boxes and updating the date. My issue is after successfully sshing in my second command is not being executed. I am doing this correctly?
Code:
...
0
votes
1answer
57 views
Python Pexpect: TypeError: unsupported operand type(s) for %: 'int' and 'dict'
When I try to run the following pexpect command i get the error: TypeError: unsupported operand type(s) for %: 'int' and 'dict'. I do not really understand why I am getting this error. When I do a ...
0
votes
0answers
36 views
Decrypt Server Drives with Crontab
When a python script is so heavily dependent on gnome libraries that it cannot be run through chrontab, what is the right way to execute the script weekly?
I am writing a backup script. Details are ...
0
votes
1answer
61 views
Getting multi-threading to work with a list using python pexpect
I wrote a simple python pexpect script to ssh into a machine and perform a action. Now I need to do this action to multiple servers. I am using a list to hit all of the servers concurrently using ...
0
votes
0answers
14 views
pexpect cannot match after child move cursor
I am using pexpect to automation some subprocesses.
But one child process moves the cursor and output after that cannot be matched.
I did a expect(pexpect.EOF) and then print child.before. It only ...
0
votes
2answers
143 views
Alternative to scraping netstat for getting list of remote IP addresses?
I'm currently scraping the output of netstat -n -A inet on Linux and netstat -n -f inet on Mac OSX to get a collection of remote IP addresses and ports to which the machine is connected using the ...
2
votes
1answer
283 views
reading output from pexpect sendline
I have pexpect working, but I am having problems printing the output back from it. In my test script below, it creates the ssh connection, and then sends a sudo su -, then my password, and then sends ...
0
votes
0answers
82 views
Pexpect child not reading config file
I'm trying to use pexpect to open pianobar (a client for Pandora online radio).
If I just start pianobar from the command line (not from my Python program), it logs in automatically using info from ...
0
votes
2answers
84 views
pexpect output not showing
Our simple pexpect script has this:
import pexpect
import sys
test = pexpect.spawn('ftp www.today.com')
test.logfile = sys.stdout
test.expect('Name.*')
However, on the shell the script was ...
0
votes
1answer
60 views
How do I get pexpect to match everything BUT a given line?
Let's say there's a call to pexpect.expect like this:
ret = pex.expect([re.escape(line), pexpect.EOF, pexpect.TIMEOUT], timeout)
if ret == 0:
do_stuff()
elif ret == 1:
do_eof_stuff()
elif ret ...
1
vote
2answers
103 views
Can python popen capture interactive output of a subprocess of a subprocess
We have an app named app.exe which in turn is a wrapper for a java.exe for the installanywhere launcher.
Suppose we have a python script a.py which calls app.exe which then spawns the java.exe ...
0
votes
0answers
30 views
Is pexpect the right tool for subprocess?
We have an app.exe that uses another 3rd party installation wizard app, InstallAnywhere, to install our application.
It is a text-based wizard - meaning a new shell is spawned (and the child process ...
0
votes
1answer
352 views
Python pexpect returning the command and the output from the command
I want to connect to a server that's running CLISH, supply a password when a password prompt is given (works), then issue a "shell" command to bump me to a bash shell (works), then test for the ...
0
votes
0answers
40 views
installanywhere and expect
We are trying to auto install our app.bin (for linux) and app.exe (for windows) using python pexpect.
It looks like it can never work because install anywhere uses its own launcher to start another ...
0
votes
0answers
44 views
pexpect not catch keyword
We have an application called app.exe.
When we run app.exe -i console, it brings up another windows shell to prompt for inputs, a text-based wizard.
We have a python script that seems to fail to ...
0
votes
1answer
93 views
looping over a some ips from a file in python?
I have got csv a file conatainning ips aranged in columns like :
10.38.227.233,VLAN-A,23
10.38.227.233,VLAN-XYZ,27
10.38.227.233,VLAN-XZ,27
10,38.169.103,VLAN-ABCD,11
10,38.169.103,VLAN-ABCD,16
...
0
votes
1answer
49 views
error in pexpect script to login as root
import pexpect, os, sys
cmd = "sudo su -"
p = pexpect.spawn(cmd, timeout=60)
pass_expect = ".*assword.*" (as I get a prompt saying "[sudo] password for user" )
p.expect(pass_expect)
print "I want ...
1
vote
0answers
36 views
Synchronizing between multiple pexpect processes
I am writing an application that requires to ssh and telnet to a device at the same time.
The pseudo code goes something like this.
p1 = pexpect.spawn("ssh to the device")
p1.send("run some command")
...
0
votes
0answers
71 views
Communicate with Rar.exe in Python
From a Python script I want to create a RAR file. I will need to communicate with Rar.exe because I only want the first RAR volume from a multi-volume archive set, nothing more. The -vp switch makes ...
0
votes
1answer
64 views
How to login the super user(root) in remote host system using pexpect?
How to login the super user(root) in remote host system using pexpect?
user = root user
password = 'pass'
child = pexpect.spawn('ssh %s@%s'%(user,host,))
0
votes
0answers
80 views
Pexpect read_nonblocking issue
In /tmp/potato.py I have:
#!/usr/bin/env python
print u'Potatos are \u20ac3 per kilogram'
And then using pexpect, I run the script below:
import pexpect
s1 = pexpect.spawn('/tmp/potato.py')
print ...
1
vote
1answer
80 views
use pexpect under subprocess had error
I use pexpect's pxssh model wrote an auto ssh login program.
but when i use the same program in multiprocessing, this error occurs:
Exception in thread Thread-2:
Traceback (most recent call last):
...
0
votes
0answers
263 views
pexpect telnet into one device and then from there to another
I am trying to use pexpect to telnet to a device and then subsequently telnet from that device to another device and then output the result of a command on the second device but i am unable to. Here ...
0
votes
2answers
123 views
Errors when connecting to router with python code
I am trying to connect to some router using the above code and I am using juniperj2320.py module and in test file I have
am using code base from this ...
0
votes
2answers
128 views
Automate `svn up` with password entry
I need a script that updates my copy of a repository. When I type "svn up" I usually am forced to enter a password, how do I automate the password entry?
What I've tried:
import pexpect, sys, re
...
1
vote
1answer
125 views
Pexpect shutting down a shell script
I have two defined functions, foo and bar which run pexpect that calls a script from the command line using pexpect.spawn. Next it just sends a control-c using pexpect's sendcontrol and close to tell ...
0
votes
1answer
81 views
Why isn't pexpect consuming the output from the shell properly?
I am running Solaris 5-10, python 2.6.2 and pexpect 2.4
I have the very simple python script below which exercises the functionality of sending and receiving text from the shell.
My understanding ...
1
vote
2answers
125 views
including wildcards in pexpect.run()
my terminal output is
$ setserial -g /dev/ttyS*
/dev/ttyS0, UART: unknown, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: unknown, Port: 0x02f8, IRQ: 3
/dev/ttyS2, UART: unknown, Port: 0x03e8, IRQ: ...
0
votes
0answers
51 views
pexpect logic to keep communicating with a process via messaging
I have written a little script that accepts messages and sends them to a subprocess using pexpect. I don't know whats wrong, but my design of the interaction leads to delayed messages after the first ...
