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)建。
相關(guān)文章
- python字符串定義的方式有哪些
- Python讀寫csv文件的操作方法
- 使用Python?Beautiful?Soup解析HTML內(nèi)容的方法
- Python異步之在Asyncio中怎么運(yùn)行阻塞任務(wù)
- Python異步之上下文管理器怎么使用
- Python異步之生成器怎么使用
- python如何實(shí)現(xiàn)簡(jiǎn)易的學(xué)生信息管理系統(tǒng)
- Python 網(wǎng)絡(luò)編程
- Python DNS查找
- Python 請(qǐng)求狀態(tài)代碼
- Python 網(wǎng)絡(luò)接口
- Python 構(gòu)建URL
- Python 代理服務(wù)器
- Python列出目錄
- Python 并發(fā)簡(jiǎn)介
- Python 線程
- Python 同步線程
- Python 調(diào)試線程應(yīng)用程序
- Python 處理器通信
- Python 事件驅(qū)動(dòng)編程