Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python3 compatible ssh library [closed]

Tags:

python-3.x

ssh

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.

like image 710
m1k3y3 Avatar asked Feb 20 '12 15:02

m1k3y3


1 Answers

Python bindings for libssh2 now supports python3 as well

Thanks to @aix

like image 62
m1k3y3 Avatar answered Nov 09 '22 22:11

m1k3y3