Sign in or Join FriendFeed
FriendFeed is the easiest way to share online. Learn more »
joshua schachter
django? turbogears? pylons? cherrypy? any suggestions here? finding a lot of complexity for a little project.
tornado? =) - Jim Norris
it's just a mostly read-only site. no ajax even. - joshua schachter
Just write some plain old Python code that concatenates strings? - ⓞnor from Android
still have to host it somehow. WSGI etc. i tried colubrid, which is very minimal, and it makes mod_wsgi segfault. - joshua schachter
Tornado does support WSGI, fyi: http://www.tornadoweb.org/documen.... It definitely works with mod_wsgi as well. Not sure if it meets your requirements. - Bret Taylor
For mostly read-only: nginx for serving statics, gated to primitive web.py wsgi for generating those statics. - Адский Блондин
Use Django with "direct_to_template" generic view ( http://docs.djangoproject.com/en... ). I can send you example code if you want, it's simple. - Tomáš Horáček
Bret, that's kinda cool. I hadn't realized. - joshua schachter