我对此没有太多了解,但是我想使用Paramiko模块将python数据帧作为.csv文件直接传输到远程服务器。当前,我将数据帧另存为csv,然后将该csv文件推送到服务器。我被类似的问题How to write pandas dataframe to csv/xls on FTP directly绊倒了,但是可以使用paramiko模块吗?预先感谢!
这是我用来将.csv文件从目录传输到远程服务器的简单脚本:
import pandas as pd
import paramiko
# Save DataFrame as CSV
file_name = 'file.csv'
df.to_csv(file_name,index=False)
# Connect to Server Via FTP
ssh_client = paramiko.SSHClient()
ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh_client.connect(hostname='host',username='user_name',password='password')
ftp_client= ssh_client.open_sftp()
# Upload 'file.csv' to Remote Server
ftp_client.put('path_to_file.csv','path_to_remote_file')
答案 0 :(得分:2)
只需使用SFTPClient.open
with sftp.open('path_to_remote_file', "w") as f:
f.write(df.to_csv(index=False))