我有一个vps,我的本地电脑在局域网中。 当paramiko安装在我的本地电脑上时,我可以从我的vps获取文件。
import paramiko
t = paramiko.Transport(("vps ip",22))
t.connect(username = "username", password = "key")
sftp = paramiko.SFTPClient.from_transport(t)
remotepath='/tmp/test.txt'
localpath='/tmp/test.txt'
sftp.get(remotepath,localpath)
现在的问题是:如何通过paramiko或其他方式从vps ip获取本地PC上的文件?