tags:

views:

552

answers:

2

Hi all,

I've been looking around for a module which allows me to do SSH / SFTP functions in python without using POPEN to do it manually. Is there anything like this? I haven't found any real information on this, thanks!

+3  A: 

You're probably looking for the excellent paramiko library:

http://www.lag.net/paramiko/

Carl Hill
+3  A: 

paramiko works nicely: http://www.lag.net/paramiko/

Ringding