i have gone through several stackoverflow posts on Python3 and SSH, however it does seem to me there is nothing out there yet.

I checked:

  1. paramiko
  2. pexpect
  3. fabric
  4. some custom made scripts

What would you recommend to use for SSH operations like:

  1. password login
  2. key based authentication
  3. file transfer
  4. remote command execution

I'd like to avoid subprocess.Popen as this causes some headaches while multitreading

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Python bindings for libssh2 now supports python3 as well

Thanks to @aix

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.