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.

Thanks Nilesh..

link|improve this question
Must it be FTP? HTTP would be much simpler. – Ignacio Vazquez-Abrams Oct 23 '10 at 18:41
feedback

2 Answers

up vote 0 down vote accepted

Check out the FTP examples with twisted

Also a simple implementation: ftpdrop.py

link|improve this answer
Thanks a lot . It was great... – Nilesh Nar Oct 23 '10 at 19:53
Thanks again...The whole day i was doing google for FTP sample code,but i wasn't successful.... U made my work simpler...Thanks a lot... – Nilesh Nar Oct 23 '10 at 20:03
feedback

This is probably the best you can find to understand the FTP protocol. Implementation should be pretty simple once you've understood the mechanism.

link|improve this answer
I have gone through the details of ftp protocol, but the implementation using it is bit different. I want a simple sample code to get some idea of it. – Nilesh Nar Oct 23 '10 at 18:48
@Nilesh Nar: Provided an example with twisted. – pyfunc Oct 23 '10 at 18:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.