I want to write a Python "information server":
- Various types of information will be displayed: tables of data, docs, etc. Some is dynamic and some static. I'd like to use HTML templating, and am already using jinja2 (with pygments).
- There may also be some "live update" pages so I'd like to use AJAX and perhaps jQuery.
- I'd like to deploy this without having to install and configure an HTTP server (e.g. Apache). The traffic will be fairly low. But I'd like an efficient Python server.
The two solutions I have in mind are Cherrypy or Flask (and Werkzeug). (These would be used with jinja2, jQuery, SQLite, SQL-Alchemy?) Cherrypy has been around for a while and seems quite mature and looks to have an efficient server implementation and all the features I'd want. Flask is newer, but looks more polished, and I'm impressed by the other work from Pocoo.
Does anyone have experience of having worked with both systems? What are limitations of either? How to they compare (features, documentation, support, bugs, speed).
Is Werkzeug an efficient server? I read that Cherrypy is about as efficient a server as you could write in Python. Is Werkzeug fast/rebust enough for a small site?
Please don't reply with "yeah man, Flask is cool, you should use it." That tells me nothing about your reasoning or experience and makes me think you haven't really used it at all.