Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to have a one line command in python to do a simple ftp server? I'd like to be able to do this as quick and temporary way to transfer files to a linux box without having to install a ftp server. Preferably a way using built in python libraries so there's nothing extra to install.

share|improve this question
2  
Unless you use an external python library like pftftpdlib, I doubt you can do this with one line of code. Python has a built in ftp client, but not a server. – GWW Feb 14 '11 at 16:40

5 Answers

up vote 23 down vote accepted

Obligatory Twisted example:

twistd -n ftp

And probably useful:

twistd ftp --help

Usage: 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.
share|improve this answer
Very nice! But the OP asked to use the standard python library because he didn't want to install other libraries. – Andrea Spadaccini Feb 14 '11 at 17:03
2  
Right, I do deserve down-voting, but really, people should know Twisted. And of course Twisted is in the base install of many Linuxes. – Ali Afshar Feb 14 '11 at 17:42
I didn't down-vote because it's a nice answer, ever if a bit O, and people from the future will find it useful when they search for similar problems. – Andrea Spadaccini Feb 14 '11 at 17:52
Thanks Ali A, I didn't know about twistd! – zio Feb 14 '11 at 23:25
thou i like Twisted it is clear the user doesnt want to install a library thats why i down voted, because of "oh i have this problem, and somebody suggested i use this other software to fix it, ok now i have two problems" – Guillermo Siliceo Trueba Apr 22 '11 at 0:08
show 4 more comments

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).

From the commandline:

sudo python -m pyftpdlib.ftpserver

Alternatively 'my_server.py':

#!/usr/bin/env python

from pyftpdlib import ftpserver
address = ("0.0.0.0", 21)  # listen on every IP on my machine on port 21
server = ftpserver.FTPServer(address, ftpserver.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:

sudo python -m pyftpdlib.ftpserver --help
share|improve this answer

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.

share|improve this answer

I dont know about a one-line FTP server, but if you do

python -m SimpleHTTPServer

It'll run an HTTP server on 0.0.0.0:8000, serving files out of the current directory. If you're looking for a way to quickly get files off a linux box with a web browser, you cant beat it.

share|improve this answer

Good list of tools at

http://blog.willdonnelly.net/2008/12/13/a-few-handy-file-transfer-tools-all-written-in-python/

I've used woof myself on a number of occasions. Very nice.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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