Simple HTTP Server ------------------- Python has a module available for creating a very simple HTTP server from the current directory: :: python -m http.server 8080 This is valid for Python 3. For older python versions: :: python -m SimpleHTTPServer 8080