How can I make an SSH connection in Python 3.0? I want to save a file on a remote computer where I have password-less SSH set up.
6 Answers
I recommend calling ssh as a subprocess. It's reliable and portable.
import subprocess
proc = subprocess.Popen(['ssh', 'user@host', 'cat > %s' % filename],
stdin=subprocess.PIPE)
proc.communicate(file_contents)
if proc.retcode != 0:
...
You'd have to worry about quoting the destination filename. If you want more flexibility, you could even do this:
import subprocess
import tarfile
import io
tardata = io.BytesIO()
tar = tarfile.open(mode='w:gz', fileobj=tardata)
... put stuff in tar ...
proc = subprocess.Popen(['ssh', 'user@host', 'tar xz'],
stdin=subprocess.PIPE)
proc.communicate(tardata.getvalue())
if proc.retcode != 0:
...
2 Comments
tardata.getvalue() has your answerYou want all of the ssh-functionality implemented as a python library? Have a look at paramiko, although I think it's not ported to Python 3.0 (yet?).
If you can use an existing ssh installation you can use the subprocess way Dietrich described, or (another way) you could also use pexpect (website here).
2 Comments
First:
Two steps to login via ssh without password
in your terminal
[macm@macm ~]$ ssh-keygen
[macm@macm ~]$ ssh-copy-id -i $HOME/.ssh/id_rsa.pub [email protected] <== change
Now with python
from subprocess import PIPE, Popen
cmd = 'uname -a'
stream = Popen(['ssh', '[email protected]', cmd],
stdin=PIPE, stdout=PIPE)
rsp = stream.stdout.read().decode('utf-8')
print(rsp)
Comments
It might take a little work because "twisted:conch" does not appear to have a 3.0 variant.
Comments
libssh2 works great for Python 3.x.
See this Stack Overflow article
How to send a file using scp using python 3.2?