Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
184 views

How to get Fabric to automatically (instead of user-interactively) interact with shell commands? Combine with pexpect?

Seeking means to get Fabric to automatically (instead of user-interactively) interact with shell commands (and not just requests for passwords, but also requested user input when no "stdin/interactive ...
6
votes
1answer
545 views

fabric vs pexpect

I've stumbled upon pexpect and my impression is that it looks roughly similar to fabric. I've tried to find some comparision, without a success, so I'm asking here, in case someone has experience with ...
4
votes
1answer
172 views

Is there autoexpect for pexpect?

I would like to generate Python Expect (pexpect) code automatically, does something like autoexpect exist for pexpect?
4
votes
2answers
2k views

python, set terminal type in pexpect

I have a script which uses pexpect to start a CLI program. It works a bit like a shell where you get a prompt where you can enter some commands. The problem I have, I think, is that this program uses ...
4
votes
4answers
2k views

Pexpect, running ssh-copy-id is hanging when trying to spawn a second process

I'm doing a Python script where I need to spawn several ssh-copy-id processes, and they need for me to type in a password, so i'm using PExpect. I have basically this: child = ...
3
votes
1answer
57 views

How to get text from dialog box in unix using pexpect?

I have a shell script script here as below: #!/bin/bash CPUSELECTION="1 386SX off \ 2 386DX on \ 3 486SX off \ 4 486DX off " #dialog --backtitle "Select CPU" ...
3
votes
1answer
168 views

Tunneling TCP ports through ssh without blocking

I'm trying setup a ssh tunnel via pexpect with following code: #!/bin/env python2.4 import pexpect, sys child = pexpect.spawn('ssh -CfNL 0.0.0.0:3306:127.0.0.1:3306 user@server.com') child.logfile = ...
3
votes
3answers
192 views

Python: Socket: Handling TCP connections over a cell network

I am doing some socket programming in python in which I develop a client TCP/IP socket to communicate with a slow embedded device. So sometimes, when the response is supposed to be only one package, ...
3
votes
4answers
1k views

how to get console output from a remote computer (ssh + python)

I have googled "python ssh". There is a wonderful module "pexpect", which can access a remote computer using ssh (with password). After the remote computer is connected, I can execute other ...
2
votes
1answer
131 views

Any substitutes for pexpect?

I am writing a script using python pexpect to execute another script on a remote machine. It works fine in normal cases, but if there is a time.sleep in the remote script, it fails. I want to get to ...
2
votes
3answers
551 views

Pexpect - silence ssh connection output

I'm using a simple pexpect script to ssh to a remote machine and grab a value returned by a command. Is there any way, pexpect or sshwise I can use to ignore the unix greeting? That is, from ...
2
votes
5answers
1k views

Verify a file exists over ssh

I am trying to test if a file exists over SSH using pexpect. I have got most of the code working but I need to catch the value so I can assert whether the file exists. The code I have done is below: ...
2
votes
1answer
532 views

How to set explicitly the terminal size when using pexpect

I have a ncurses app that checks terminal size at startup and exits immediately if it doesn't fit. In Linux, the default size is 80x24, this app requires at least 25. The fix is easy, I'm just ...
2
votes
2answers
905 views

How to spawn multiple python scripts from a python program?

Hi I want to spawn (fork?) multiple Python scripts from my program (written in Python too) My problem is that I want to dedicate one terminal to each script , because I'll gather their output using ...
1
vote
0answers
83 views

SFTP using pexpect python module

I am trying to SFTP a file using the pexpect module. sftp_opts = ['-o', 'Port=%s' % port, '-o', 'UserKnownHostsFile=%s' % known_hosts_file, '-o', ...
1
vote
0answers
52 views

pexpect output in different window

Now I am working in a project where the testscript has to connect many (3-10) remote computers (SSH and do some stuff). I started to use the pexpect and it is simple as a button. It works fine. I ...
1
vote
2answers
59 views

Running Scilab from pexpect

I am trying to run scilab using the pexpect module with the following code: import pexpect c=pexpect.spawn('scilab-adv-cli -nb') c.expect('-->') ...
1
vote
1answer
90 views

Python: how to launch scp with pexpect without OpenSSH GUI Password Prompt on Ubuntu?

I'm attempting to automate scp commands with pexpect on Ubuntu. However, I keep getting a password GUI prompt with title "OpenSSH". How can I disable this behavior and use command line prompts ...
1
vote
1answer
157 views

Interfacing Python With Fortran through Command-Line Using Pexpect

I am using pexpect with python to create a program that allows a user to interact with a FORTRAN program through a website. From the FORTRAN program I am receive the error: open: Permission denied ...
1
vote
0answers
144 views

pexpect sftp: source file as file object

Is it possible not to read the file to be transferred from the file system? I get files from a server and want sftp them to another. I'd rather not write them to the file system first. Is there a ...
1
vote
1answer
607 views

question about pexpect in python

I tried both pexpect and subprocess.Popen from python to call an external long term background process (this process use socket to communicate with external applications), with following details. ...
1
vote
1answer
129 views

Using pexpect to listen on a port from a virtualbox

I am trying to create a tcplistener in python (using pexpect if necessary) to listen for tcp connection from Ubuntu in virtualbox on a windows xp host. I would really appreciate it, if one of you ...
1
vote
1answer
597 views

SCP a tar file using pexpect

I am using ssh to log into a camera, scp a tarball over to it and extract files from the tarbal and then run the script. I am having problems with Pexpect, though. Pexpect times out when the tarball ...
1
vote
3answers
486 views

Grabbing the output of MAPLE via Python

How would I use the subprocess module in Python to start a command line instance of MAPLE to feed and return output to the main code? For example I'd like: X = '1+1;' print MAPLE(X) To return the ...
1
vote
6answers
7k views

Automate SSH without using public key authentication or expect(1)

Is there a way to pass a password to ssh automatically. I would like to automatically ssh to a server without using public key authentication or expect scripts, by somehow getting ssh to read the ...
0
votes
2answers
86 views

Python - Read in binary file over SSH

With Python, I need to read a file into a script similar to open(file,"rb"). However, the file is on a server that I can access through SSH. Any suggestions on how I can easily do this? I am trying to ...
0
votes
2answers
96 views

How do I display a web page with Python?

I want to read user input in Python to get a url (e.g. http://www.google.com) and then print the web page in HTML formatting (text only) to the terminal. I tried using pexpect.spawn('elinks') but ...
0
votes
0answers
81 views

Pexpect multithreading issue

I am working on a multithreaded script which uses Pexpect to probe multiple devices I have a parent process which creates a thread input, starts a new thread and calls thread_module. Thread module ...
0
votes
2answers
142 views

Better way to execute remote command on network devices, than expect module

I currently have an implementation using the pexpect python module, which interacts with Juniper, Cisco routers. It spawns a child application and runs command like 'show version' and logs the output. ...
0
votes
1answer
211 views

Pexpect spawn.expect() seems to be unreliable in detecting process output

I have a class, ServerManager, which monitors and interfaces with another process using pexpect. Unfortunately, there is not a cleaner way to do this. The process in question does not provide an API. ...
0
votes
1answer
94 views

Cron - failing calling external script (Environment Variables initialization)

A script which partial goal is to periodically connect to a range of hosts and rsync some logs back to a central server works flawlessly when manually calling it, python ./apex2zabbix.py ...
0
votes
0answers
30 views

pexpect returning windows style end of line

If anyone has used pexpect on linux have you notice that pexpect returns the window style end of line when using its readline() function? Do you know a way to get rid of this?
0
votes
1answer
229 views

pexpect ssh not able to handle command options

am using pexpect ssh to write down a script for compilation, the ssh automation looks like this, enter code here child = ssh_expect('root', server2, cmd) child.expect(pexpect.EOF) print child.before ...
0
votes
1answer
183 views

Why does strip() fix this pexpect script?

I have an object. This object has a connect() method which spawns a pexpect process. The process that's spawned is a custom serial interface. On launch, this tool prints a menu of serial devices to ...
0
votes
2answers
120 views

What is an elegant way to abstract functions - not objects?

I have a function that logs into a sensor via telnet/pexpect and acts as a data collector. I don't want to rewrite the part that logs in, grabs the data, and parses out relevant output from it ...
0
votes
1answer
181 views

Skip stdin and stderr of child with pexpect

I'm controlling a child process using pexpect (because subprocess doesn't support pty's and I run into a deadlock with two pipes). The process creates a lot of output on stderr, in which I'm not ...
0
votes
2answers
160 views

Catching a dying process in pexpect

I'm writing some pexpect stuff that's basically sending commands over telnet. But, it's possible that my telnet session could die (due to networking problems, a cable getting pulled, whatnot). How ...
0
votes
0answers
117 views

Why is my string not being interpreted correctly in pexpect?

I am currently writing an auto-installation pexpect script. I have been banging my head against the wall on this one. In my pexpect script, I have a process that is doing the following: telnet to ...
0
votes
1answer
184 views

redirecting output of pexpect to a file

Tried to capture out put of pexpect to a file . Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. ...
0
votes
1answer
273 views

What can Expect do that Pexpect can not do?

I am considering to start using Pexpect. On Pexpects homepage I find this: Q: Why not just use Expect? A: I love it. It's great. I has bailed me out of some real jams, but I wanted ...
0
votes
1answer
102 views

using Python/Pexpect to crawl a network

This is more a logical thinking issue rather than coding. I already have some working code blocks - one which telnets to a device, one which parses results of a command, one which populates a ...
0
votes
1answer
1k views

pexpect timeout is not being used, only the default of 30 is being used

I'm trying to do a lengthy operation but pexpect with the timeout argument doesn't seem to change the length of time before the timeout exception gets fired. Here is my code: child = ...
0
votes
1answer
181 views

How to simulate re.findall for pexpect in python?

Is it possible to simulate re.findall in the pexpect module? I currently have a script that ssh's into a server using pexpect. I then have it send a command to the server which returns a bunch of ...
0
votes
2answers
158 views

python,running command line servers - they're not listening properly

hello all Im attempting to start a server app (in erlang, opens ports and listens for http requests) via the command line using pexpect (or even directly using subprocess.Popen()). the app starts ...
0
votes
2answers
682 views

To stop returning through SSH using Pexpect

I am trying to use pexpect to ssh into a computer but I do not want to return back to the original computer. The code I have is: #!/usr/bin/python2.6 import pexpect, os def ssh(): # Logs into ...
0
votes
1answer
199 views

Could not run pexect with cygwin

Getting following errors while executing pexpect example file on cygwin prompt. Can anyone help? > Administrator@INDSQA2253 /cygdrive/c/Python26/Tools/pexpect-2.1/examples $ python ssh_session.py ...
0
votes
2answers
725 views

How to install wexpect?

I'm running 32-bit Windows XP and trying to have Matlab communicate with Cgate, a command line program. I'd like to make this happen using wexpect, which is a port of Python's module pexpect to ...
0
votes
1answer
555 views

Python: win32console import problem

I want to run wexpect (the windows port of pexpect) on my Windows 7 64-bit machine. I am getting the following error: C:\Program Files (x86)\wexpect\build\lib>wexpect.py Traceback (most recent call ...
0
votes
2answers
752 views

simple twisted server (twistd .tap)with a pexpect instance error

I have been creating an async server socket that sends and recives xml using twisted. The application works great! but because my main objective was to embed it in an init.d script and make it run in ...
0
votes
2answers
144 views

writing pexpect like program in c++ on Linux

Is there any way of writing pexpect like small program which can launch a process and pass the password to that process? I don't want to install and use pexpect python library but want to know the ...

1 2