scp.py icon indicating copy to clipboard operation
scp.py copied to clipboard

scp module for paramiko

Results 32 scp.py issues
Sort by recently updated
recently updated
newest added

Fix maybe #138? This takes us away from the standard shlex implementation. It is still not what you want on Windows (backslashes will not be understood), however it should do...

bug

I am using this library to transfer files to embedded devices running dropbear. By default, this doesn't support SFTP, which I would prefer to keep that way in order to...

duplicate
enhancement
waiting on author

When trying to get a file such as `V:\test.txt` from a Windows host, this exception occurs: ``` Traceback (most recent call last): ... scp.get("V:\\test.txt") File "/home/user/.virtualenvs/opencv-4.2.0/lib/python3.6/site-packages/scp.py", line 238, in get...

bug
pr exists

Hi, I added some logging, and to my understanding of the protocol, scp.py is sending an extra `\x00` in `_recv_all`: ``` DEBUG:paramiko.transport:Secsh channel 0 opened. DEBUG:paramiko.transport:[chan 0] [chan 0] Executing...

bug

We were using the scp library to retrieve some files and it was important for us to preserve the timestamp. We have seen that even though we use the **get()**...

bug

This is a really great library. Thanks for your work maintaining this! I'd like to see a method of setting permissions for files once they've been transferred. There seems to...

enhancement

I'm trying to get a file from Windows 10 with OpenSSH running to my Macbook. I'm getting the following error whereas the same command works fine on my terminal. This...

if i want to copy a file from a remote machine to another remote machine how can we achieve with SCP module, please help.

question
waiting on author

Current put() method executes "scp -t " on remote server and receives file then being sent via chan.sendall() over the channel. I'm getting intermittent failures and I'd like to get...

enhancement
help wanted

If I want to copy multiple files, I do not wish to open the channel multiple times. Today (https://github.com/jbardin/scp.py/blob/master/scp.py#L218) it is unconditionally closed.

enhancement
help wanted