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.
|
|
Obligatory Twisted example:
And probably useful:
|
|||||||||||||
|
|
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:
Alternatively 'my_server.py':
There's more examples on the website if you want something more complicated. To get a list of command line options:
|
||||
|
|
|
Why don't you instead use a one-line HTTP server?
will serve the contents of the current working directory over HTTP on port 8000. If you use Python 3, you should instead write
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. |
||||
|
|
|
I dont know about a one-line FTP server, but if you do
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. |
|||
|
|
|
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. |
|||
|
|