Python hat einen HTTP Server in die Standard Bibliothek eingebaut. Das ist total praktisch, bspw. für die Vorschau von Webseiten.
# Python 3.x
$ python3 -m http.server
# Python 2.x
$ python -m SimpleHTTPServer 8000
(This will serve the current directory at http://localhost:8000)