問題描述
我需要一個 python 客戶端來執行 FTPES(顯式),有沒有人使用任何可以執行此操作的 python 包的經驗.
I need a python client to do FTPES (explicit), does anyone has experience with any python package that can do this.
我無法在 python 中執行此操作,但可以使用 FileZilla 等工具連接到 FTP 服務器
I am not able to do this in python, but can connect to FTP server using tools like FileZilla
謝謝
推薦答案
本地 Python 很好地支持 FTP-SSL Explicit.建立連接后,您可以使用所有標準的 ftplib 命令.更多可以在以下位置找到:http://docs.python.org/2/library/ftplib.html#ftplib.FTP_TLS
FTP-SSL Explicit is well supported by native Python. After setting up the connection, you can use all the standard ftplib commands. More can be found at: http://docs.python.org/2/library/ftplib.html#ftplib.FTP_TLS
這是一個下載文件的基本示例:
Here's a basic example for downloading a file:
from ftplib import FTP_TLS
ftps = FTP_TLS('ftp.MySite.com')
ftps.login('testuser', 'testpass') # login anonymously before securing control channel
ftps.prot_p() # switch to secure data connection.. IMPORTANT! Otherwise, only the user and password is encrypted and not all the file data.
ftps.retrlines('LIST')
filename = 'remote_filename.bin'
print 'Opening local file ' + filename
myfile = open(filename, 'wb')
ftps.retrbinary('RETR %s' % filename, myfile.write)
ftps.close()
這篇關于FTPES - Python 中通過顯式 TLS/SSL 的 FTP的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!