Simple FTP Server Solution With Python
I spent the last few days dealing with setting up an ftp server on by ubuntu vps and haven't figured out a solution. Then I tried asking my friends thru my facebook account. My friend Sakti came up with a very simple and elegant solution using python.
The solution uses pyftpdlib package. To install the package is really simple:
The solution uses pyftpdlib package. To install the package is really simple:
$ easy_install pyftpdlibor
$ pip install pyftpdlibafter that create the folowing script and save it as a python file:
from pyftpdlib.authorizers import DummyAuthorizer
from pyftpdlib.handlers import FTPHandler
from pyftpdlib.servers import FTPServer
authorizer = DummyAuthorizer()
authorizer.add_user("user", "password", "/home/user", perm="elradfmw")
authorizer.add_anonymous("/home/nobody")
handler = FTPHandler
handler.authorizer = authorizer
server = FTPServer(("0.0.0.0", 21), handler)
server.serve_forever()
Then run the script and try accessing your server using ftp. Only 10 lines but it works like a charm, a very python way :)If you want to download the script you can get it here.Hope that helps.regards-E-follow @femmerling on twitter
I guess there's a typo in last line. It should be "server.serve_forever()", judging by pyftplib's documentation.
ReplyDeleteFixed, thx a lot for the correction :)
DeleteI think it:
ReplyDeleteauthorizer = DummyAuthorizer
should be
authorizer = DummyAuthorizer()
Fixed that, a typo. Thanks
Delete