[EMAIL PROTECTED] wrote:

How can python connect to server which use SSH protocol?
Is it easy since my python has to run third party vendor, write data,
read data inside the server (supercomputer).


In advance, I'm not sure if I understood your problem. SSH is clearly a remote
shell. You will be able to execute other programs on the remote computer.
Is is suitable to use this:


child_stdin,child_stdout,child_stderr = os.popen2('ssh -l my_username my_host')


On the other side, you can write an application that also uses stdin/stdout for communication.
Best,


  Laci 2.0

--
_________________________________________________________________
 Laszlo Nagy                  web: http://designasign.biz
 IT Consultant                mail: [EMAIL PROTECTED]

                Python forever!


-- http://mail.python.org/mailman/listinfo/python-list

Reply via email to