Stack recommendations for small/medium-sized web application in Python

Posted by reto on Stack Overflow See other posts from Stack Overflow or by reto
Published on 2010-05-17T08:31:33Z Indexed on 2010/05/17 8:40 UTC
Read the original article Hit count: 267

Filed under:
|
|

I'm looking for some recommendations for a python web application. We have some memory restrictions and we try to keep it small and lean.

We thought about using WSGI (and a python webserver) and build the rest ourself. We already have a template engine we'd like to use, but we are open for some suggestions regarding the whole request handling (the controller).

The application has to run in a single process and the requests have to be processed with multiple threads.

We've looked at django, but we are a not sure if it fits into our memory budget.

Your feedback is very welcome!

Cheers, Reto

© Stack Overflow or respective owner

Related posts about python

Related posts about web