This serves files from the current directory and any of its subdirectories. It assumes that all files are plain text files unless they have the extension ".html" in which case it assumes they are HTML files, The GET and HEAD requests are identical except that the HEAD request omits the actual contents of the file.
If you want to serve files from the current directory, just give following command on the shell prompt and open a browser at http://localhost:8080.
$ python -m SimpleHTTPServer 8080If you have a cgi script located in /cgi-bin/myscript.py, you can test it by giving
$ python -m CGIHTTPServerand going at http://localhost:8080/myscript.py
Notice that this will work for non-Python CGI scripts too!
The advantage of using CGIHTTPServer is that you will get the logs and the error messages in a shell window and not in a log file. This is of invaluable help during debugging.
The server ignores drive letters and relative path names (such as ‘..’). However, it does not implement any other access control mechanisms, so be careful how you use it.
3 comments:
Great! Nice post! this could be a good way of sharing file quickly..
Here's a small error I think:
"If you want to serve files from the current directory, just give following command on the shell prompt and open a browser at http://localhost:8000"
$ python -m SimpleHTTPServer 8080
Shouldn't be open a browser at http://localhost:8080 ?
thanks for pointing out the typo error, made the correction.
Brilliant. Just what I was looking for.
Post a Comment