🐍 A Simple HTTP Server

If you need a simple http server to just serve your static files, here you go: Just run one of the following commands in the respective directory.

Python 2.x:

$ python -m SimpleHTTPServer

Python 3.x:

$ python -m http.server 

/via +BjörnBrauer