Ben Timby has committed code to PyFilesystem that lets you expose any filesystem over FTP. We've had the ability to serve filesystems over SFTP (secure ftp) and XMLRPC for a while, but plain old FTP was a glaring omission–until now.
You can serve the current directory programatically with something like the following:
from fs.expose.ftp import serve_fs from fs.osfs import OSFS serve_fs(OSFS('.'), '127.0.0.1', 21)
The same functionality is also available to the fsserve command. The following is equivalent to the above code, but from the command line:
fsserve -t ftp .
You'll probably need root privileges (i.e. sudo) on Linux for these examples.
With the server running, you can browse the files on your home directory with an ftp client, or by typing “ftp://127.0.0.1” in to your browser. Any of the other supported filesystems can be served in the same way.
FTP has been around since the dawn of the internet, so just about any network enabled device will be able to access files exposed this way. It's a great way of creating a gateway to other filesystems. You could expose files stored on Amazon S3 for example.
You'll need to check out the latest code from SVN to try this out.
Update: Ben has posted more about this.
1 Response to "Serve FTP with Python and PyFilesystem"
I posted a bit more information on this same subject on my blog as well.
http://ben.timby.com/?p=195