wando-server

A beautiful web server for development


License
BSD-3-Clause
Install
pip install wando-server==0.2.1

Documentation

Wando Server

Wando Server is a beautiful web server for development - it is not intended to be a production server. This server is a extension to the really good dev server of Werkzeug Project. Basically it prints more readable logs to the terminal.

It exposes the same api of "run_simple" method from werkzeug.serving. You can run the server with this simple code:

#!/usr/bin/env python
from wando import run_simple
from my_app import app

run_simple('localhost', 5000, app)

If you using Flask, for example, you can just do:

#!/usr/bin/env python
from wando import ColoredLogsRequestHandler
from my_app import app

app.run(request_handler=ColoredLogsRequestHandler)