7

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

  • paramiko
  • pexpect
  • fabric
  • some custom made scripts

What would you recommend to use for SSH operations like:

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

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

tshepang
  • 12,111
  • 21
  • 91
  • 136
m1k3y3
  • 2,762
  • 8
  • 39
  • 68

1 Answers1

2

Python bindings for libssh2 now supports python3 as well

Thanks to @aix

m1k3y3
  • 2,762
  • 8
  • 39
  • 68