python進階進階篇——FTP伺服器開發簡述

來源:互聯網
上載者:User
    在經過老外老師一陣基本功訓練,馬上覺得自己牛比閃閃起來,好了,下面就開始一個小例子,給自己鼓鼓勁。當然,目前三腳貓功夫的狀況還是沒有改變,不過總算是沒有停止前進,繼續加油吧。       首先要裝個外掛程式(也是python寫的,它的名字很嚇人,叫美杜莎),我把medusa-0.5.4.tar.gz下載下來以後,解壓到一個目錄,然後進去執行:python setup.py install。哈哈哈哈,輸出了一堆東東之後(複製到某個集中檔案夾和編譯一些檔案),眾神歸位。     好了,下面開始跑我們的代碼:import asyncorefrom medusa import ftp_server, filesys, logger def StartServer():    ftpServ = ftp_server.ftp_server( ftp_server.anon_authorizer( "G://"), ip='127.0.0.1', port=21, logger_object=logger.file_logger("log.txt") )        asyncore.loop()    if __name__ == "__main__":    print "Starting FTP Server.."StartServer()print "Server is running..."好,簡單的服務已經搞定了。ftp上去顯示的是:Connected to 127.0.0.1.
220 guge FTP server (Medusa Async V1.10 [experimental]) ready.
User (127.0.0.1:(none)):不過我這裡是windows2003+python2.5,執行後有假死現象,不知道是何故,還望有識之士能指點迷津。呵呵。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.