One line ftp server in python One line ftp server in python python python

One line ftp server in python


Obligatory Twisted example:

twistd -n ftp

And probably useful:

twistd ftp --helpUsage: twistd [options] ftp [options].WARNING: This FTP server is probably INSECURE do not use it.Options:  -p, --port=           set the port number [default: 2121]  -r, --root=           define the root of the ftp-site. [default:                    /usr/local/ftp]  --userAnonymous=  Name of the anonymous user. [default: anonymous]  --password-file=  username:password-style credentials database  --version           --help            Display this help and exit.


Check out pyftpdlib from Giampaolo Rodola. It is one of the very best ftp servers out there for python. It's used in google's chromium (their browser) and bazaar (a version control system). It is the most complete implementation on Python for RFC-959 (aka: FTP server implementation spec).

To install:

pip3 install pyftpdlib

From the commandline:

python3 -m pyftpdlib

Alternatively 'my_server.py':

#!/usr/bin/env python3from pyftpdlib import serversfrom pyftpdlib.handlers import FTPHandleraddress = ("0.0.0.0", 21)  # listen on every IP on my machine on port 21server = servers.FTPServer(address, FTPHandler)server.serve_forever()

There's more examples on the website if you want something more complicated.

To get a list of command line options:

python3 -m pyftpdlib --help

Note, if you want to override or use a standard ftp port, you'll need admin privileges (e.g. sudo).


Why don't you instead use a one-line HTTP server?

python -m SimpleHTTPServer 8000

will serve the contents of the current working directory over HTTP on port 8000.

If you use Python 3, you should instead write

python3 -m http.server 8000

See the SimpleHTTPServer module docs for 2.x and the http.server docs for 3.x.

By the way, in both cases the port parameter is optional.