python 讀取Linux伺服器上的檔案方法

2022-10-06 19:45:12 字數 655 閱讀 5628

使用python語句,讀取linux遠端伺服器上的檔案列印到控制台的**實現:

import paramikwww.cppcns.como

#伺服器資訊,主機名(ip位址)、埠號、使用者名稱及nmmmsnfy密碼

hostname = ""

port = 22

username = ""

password = ""

client = paramiko.sshclient()

client.set_missing_host_key_policy(paramiko.autoaddpol

client.connect(hostname, port, username, password, compress=true)

sftp_client = client.open_sftp()

remote_file = sftp_client.open("/home/...txt")#檔案路徑

try:

for line in remote_file:

print(line)

finally:

remote_file.close()

本文標題: python 讀取linux伺服器上的檔案方法

本文位址: /os/linux/248497.html

python讀取檔案 讀取linux系統上的檔案

寫在最後 import os import pandas as pdpython在linux系統上進去檔案i o操作時,可以有多種方式定義檔案路徑,這裡給出兩種 路徑的一般正規化 home login user account directory a directory n filename.主目錄...

python高階讀取檔案 Python讀取檔案內容

開啟檔案之後,就可以讀取檔案的內容,檔案物件提供多種讀取檔案內容的方法。開啟test.txt檔案 f open test.txt r 開啟test.txt檔案 f.close 關閉檔案 test.txt檔案有以下內容 hello world.hello python.hello imooc.讀取若干...

python讀取配置 python讀取配置檔案

本機 python3.5 1.需要安裝configerparser py2是 configparser 2.編寫 執行前 coding utf8 import configparser conf configparser.configparser conf.read f python clstudy...