Top "Paramiko" questions

Paramiko is a Python module that implements the SSH2 protocol.

Timeout in paramiko (python)

I'm looking for a way to set a timeout for this: transport = paramiko.Transport((host, port)) transport.connect(username = username, …

python ssh timeout scp paramiko
Python paramiko script, problems reading output during exec_command()

Background: I am using python and paramiko to automate the process I go through everytime I have to hand in …

python ssh paramiko
Upload files using SFTP in Python, but create directories if path doesn't exist

I want to upload a file on a remote server with Python. I'd like to check beforehand if the remote …

python ssh sftp paramiko
Nested SSH session with Paramiko

I'm rewriting a Bash script I wrote into Python. The crux of that script was ssh -t first.com "ssh …

python ssh paramiko
How to run sudo with Paramiko? (Python)

What I've tried: invoke_shell() then channel.send su and then sending the password resulted in not being root invoke_…

python ssh sudo paramiko
Long-running ssh commands in python paramiko module (and how to end them)

I want to run a tail -f logfile command on a remote machine using python's paramiko module. I've been attempting …

python ssh paramiko
How to list all the folders and files in the directory after connecting through SFTP in Python

I am using Python and trying to connect to SFTP and want to retrieve an XML file from there and …

python ssh sftp paramiko
paramiko Incompatible ssh peer (no acceptable kex algorithm)

I'm getting the following error when trying to ssh to a Cisco ACS device using the paramiko library. I've used …

python ssh paramiko cisco
'put' in SFTP using Paramiko

I've installed and written the following Paramiko which is unable to put the file. It is easily able to 'get' …

python sftp paramiko
Directory transfers with Paramiko

How do you use Paramiko to transfer complete directories? I'm trying to use: sftp.put("/Folder1","/Folder2") which is giving …

python sftp paramiko