溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python搭建FTP服務(wù)器的方法示例

發(fā)布時間:2020-10-04 15:06:45 來源:腳本之家 閱讀:132 作者:shu_8708 欄目:開發(fā)技術(shù)

Python版本 3.6.2

使用的ftp包:pyftpdlib    pip install pyftpdlib就可以下載安裝了

FTP協(xié)議下載上傳文件在文件過大的情況下會比HTTP更具有優(yōu)勢,更為方便的實現(xiàn)斷點上傳和進度監(jiān)控,下面是官方文檔中的

基本方法

import os 
from pyftpdlib.authorizers import DummyAuthorizer 
from pyftpdlib.handlers import FTPHandler 
from pyftpdlib.servers import FTPServer 
 
def main(): 
  # 實例化用戶授權(quán)管理 
  authorizer = DummyAuthorizer() 
  authorizer.add_user('user', '12345', 'path', perm='elradfmwMT')#添加用戶 參數(shù):username,password,允許的路徑,權(quán)限 
  authorizer.add_anonymous(os.getcwd())#這里是允許匿名用戶,如果不允許刪掉此行即可 
 
  # 實例化FTPHandler 
  handler = FTPHandler 
  handler.authorizer = authorizer 
 
  # 設(shè)定一個客戶端鏈接時的標(biāo)語 
  handler.banner = "pyftpdlib based ftpd ready." 
 
  #handler.masquerade_address = '151.25.42.11'#指定偽裝ip地址 
  #handler.passive_ports = range(60000, 65535)#指定允許的端口范圍 
 
  address = (ipaddr, 21)#FTP一般使用21,20端口 
  server = FTPServer(address, handler)#FTP服務(wù)器實例 
 
  # set a limit for connections 
  server.max_cons = 256 
  server.max_cons_per_ip = 5 
 
  # 開啟服務(wù)器 
  server.serve_forever() 
 
if __name__ == '__main__': 
  main() 

開啟ftp服務(wù)器后要確定防火墻開啟了21,20端口,并且在客戶端的瀏覽器中設(shè)置internet選項高級選項卡中的被動ftp的勾去掉之后才能登陸到ftp服務(wù)器

從Windows登錄到服務(wù)器:

Python搭建FTP服務(wù)器的方法示例

利用Python從ftp服務(wù)器上下載文件

from ftplib import FTP 
ftp=FTP() 
ftp.connect('localhost',21)#localhost改成服務(wù)器ip地址 
ftp.login(user='user',passwd='12345') 
 
file=open('f://ftpdownload/test.txt','wb') 
ftp.retrbinary("RETR test.txt",file.write,1024)#從服務(wù)器上下載文件 1024字節(jié)一個塊 
ftp.set_debuglevel(0) 
ftp.close() 

FTP服務(wù)器事件回調(diào)函數(shù):

class MyHandler(FTPHandler):  
  def on_connect(self):#鏈接時調(diào)用 
    print "%s:%s connected" % (self.remote_ip, self.remote_port) 
 
  def on_disconnect(self):#關(guān)閉連接是調(diào)用 
    # do something when client disconnects 
    pass 
 
  def on_login(self, username):#登錄時調(diào)用 
    # do something when user login 
    pass 
 
  def on_logout(self, username):#登出時調(diào)用 
    # do something when user logs out 
    pass 
 
  def on_file_sent(self, file):#文件下載后調(diào)用 
    # do something when a file has been sent 
    pass 
 
  def on_file_received(self, file):#文件上傳后調(diào)用 
    # do something when a file has been received 
    pass 
 
  def on_incomplete_file_sent(self, file):#下載文件時調(diào)用 
    # do something when a file is partially sent 
    pass 
 
  def on_incomplete_file_received(self, file):#上傳文件時調(diào)用 
    # remove partially uploaded files 
    import os 
    os.remove(file) 

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI