通过安装使用paramiko模块,将本地文件上传到服务器上

import paramiko
import datetime
import os

hostname = '服务器ip'
username = 'root'
password = '服务器密码'
port = 22
#配置信息可以写到配置文件中 #loacl_file是要上传的本地文件路径 #remote_path是要上传到服务器上指定文件的路径 def upload(local_file, remote_path): try: t = paramiko.Transport((hostname, port)) t.connect(username=username, password=password) sftp = paramiko.SFTPClient.from_transport(t) print('开始上传文件%s ' % datetime.datetime.now()) try: sftp.put(local_file, remote_path) except Exception as e: sftp.mkdir(os.path.split(remote_path)[0]) sftp.put(local_file, remote_path) print("从本地: %s 上传到: %s" % (local_file, remote_path)) print('文件上传成功 %s ' % datetime.datetime.now()) t.close() except Exception as e: print(repr(e)) if __name__ == '__main__': local_file = r'/home/shl/dataETL/timings/words/word_pos.csv' remote_path = os.path.join('/home/',"word_pos.csv") upload(local_file, remote_path)

 

相关文章:

  • 2021-08-18
  • 2022-01-02
  • 2021-07-09
  • 2021-12-04
  • 2021-12-14
猜你喜欢
  • 2021-11-17
  • 2021-12-12
  • 2021-08-11
  • 2022-12-23
  • 2021-06-10
  • 2021-11-23
相关资源
相似解决方案