python中FTP服务器的简单代码
我想用 python 构建一个简单的 FTP 服务器,它只需下载一个文本文件即可为客户端提供服务。任何人都可以帮助我建议最好的学习材料来参考并帮助我找到一些代码片段。
I want to built a simple FTP server in python which will serve the client in just downloading a text file. Can any one kindly help me by suggesting the best study material to refer and help me finding some code snippets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我可以推荐 托管在 Github 上的 pyftpdlib
示例:
I can recommend pyftpdlib hosted at Github
Example:
查看扭曲的 FTP 示例
也是一个简单的实现: ftpdrop.py
Check out the FTP examples with twisted
Also a simple implementation: ftpdrop.py
这可能是您能找到的了解 FTP 协议的最佳内容。一旦您理解了该机制,实现应该非常简单。
This is probably the best you can find to understand the FTP protocol. Implementation should be pretty simple once you've understood the mechanism.