views:

41

answers:

2

Hi , 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..

A: 

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

Francesco De Vittori
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
@Nilesh Nar: Provided an example with twisted.
pyfunc
A: 

Check out the FTP examples with twisted

Also a simple implementation: ftpdrop.py

pyfunc
Thanks a lot . It was great...
Nilesh Nar
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