Python3 compatible ssh library

I checked the following, none of which work with Python 3:

  • paramiko
  • pexpect
  • the cloth
  • some custom scripts

What do you recommend to use for SSH operations, such as:

  • login password
  • key based authentication
  • file transfer
  • remote command execution

I would like to avoid subprocess.Popen as it causes some headaches when multitasking.

+7
source share
1 answer

Python binding for libssh2 now also supports python3

Thanks @aix

+2
source

All Articles