python -m http.server

Servidor web para teste de aplicações Python, de forma instantânea.

Dependências

pip install http
$ python -m http.server

Serving HTTP on 0.0.0.0 port 8000 ...
127.0.0.1 - - [17/Aug/2015 14:15:39] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [17/Aug/2015 14:15:39] code 404, message File not found
127.0.0.1 - - [17/Aug/2015 14:15:39] "GET /favicon.ico HTTP/1.1" 404 -
127.0.0.1 - - [17/Aug/2015 14:15:39] code 404, message File not found
127.0.0.1 - - [17/Aug/2015 14:15:39] "GET /favicon.ico HTTP/1.1" 404 -
Para alterar a porta basta informa-la na frente:
python -m http.server 8100

Comentários