Hi -
I'm using Python 2.7.3 (Fedora 17) . I tried a simple example with
pexpect to copy a file to remote system. It works
$ cat pex.py
import pexpect
s = pexpect.spawn ('scp pex.py root@10.30.77.244:/tmp')
s.expect ('Password:')
s.sendline ('a')
s.expect(pexpect.EOF,timeout=20)
Execute above prog
> pexpect looks simple to use. Please check this example
> http://www.pythonforbeginners.com/systems-programming/how-to-use-the-
pexpect
> -module-in-python/
> > python help;
> >
> > I am using pexpect to open my program.
> > Can someone tell me how to get data to appear in
> > an entry field.
>
pexpect looks simple to use. Please check this example
http://www.pythonforbeginners.com/systems-programming/how-to-use-the-pexpect-module-in-python/
--
Cheers,
Lakshmipathi.G
FOSS Programmer.
www.giis.co.in
On Tue, Aug 6, 2013 at 8:35 PM, inq1ltd wrote:
> python help;
>
>
>
> I am using p
python help;
I am using pexpect to open my program.
Can someone tell me how to get data to appear in
an entry field.
After pexpect opens the my program I have tried to use
send, sendline, and write functions to try to put data into
the program's entry field.
However, the data is going to the