Python 上傳數(shù)據(jù)

Python 上傳數(shù)據(jù)

可以使用處理ftp或文件傳輸協(xié)議的python模塊將數(shù)據(jù)上傳到服務(wù)器。需要安裝模塊ftplib才能實(shí)現(xiàn)上面功能。

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.slktour.com
# Date : 2020-08-25
pip install ftplib
  
 

1. 使用ftplib

在下面的示例中,使用FTP方法連接到服務(wù)器,然后提供用戶憑據(jù)。接下來,我們提到文件的名稱以及在服務(wù)器中發(fā)送和存儲(chǔ)文件的storbinary方法。

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.slktour.com
# Date : 2020-08-25
import ftplib
 ftp = ftplib.FTP("127.0.0.1")
 ftp.login("username", "mypassword")
 file = open('index.html','rb') 
 ftp.storbinary("STor " + file, open(file, "rb"))
 file.close() 
 ftp.quit()
  
 

當(dāng)運(yùn)行上述程序時(shí),我們觀察到該文件的副本已在服務(wù)器中創(chuàng)建。

2. 使用ftpreety

與ftplib相似,可以使用ftpreety安全地連接到遠(yuǎn)程服務(wù)器并上傳文件。可以使用ftpreety下載文件。下面的程序相象相同。

 
# Filename : example.py
# Copyright : 2020 By Codebaoku
# Author by : www.slktour.com
# Date : 2020-08-25
from ftpretty import ftpretty
 # Mention the host
 host = "127.0.0.1"
 # Supply the credentisals
 f = ftpretty(host, user, pass )
 # Get a file, save it locally
 f.get('someremote/file/on/server.txt', '/tmp/localcopy/server.txt')
 # Put a local file to a remote location
 # non-existent subdirectories will be created automatically
 f.put('/tmp/localcopy/data.txt', 'someremote/file/on/server.txt')
  
 

當(dāng)運(yùn)行上述程序時(shí),可以看到該文件的副本已在服務(wù)器中創(chuàng)建。

下一節(jié):Python代理服務(wù)器

Python 網(wǎng)絡(luò)編程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频