Live data from Hacker News

Ask HN: Best Python Framework for Google App Engine?

news.ycombinator.com

1–10 of 48 posts

Re: Ask HN: Best Python Framework for Google App Engine?

#5
The most often mentioned is Django.

We picked Tornado (tornadoweb.org) because it is lightweight and fast, especially on cold start, which is an app engine issue for low-traffic apps. It's even faster than webapp (!) because webapp loads the Django templating system.

We've been happy with Tornado, although it doesn't have as much support for some stuff (e.g., web forms). It does have a templating language which is just embedded python. I like having the power to have a reasonable "if" statement or "for" loop, even though most people believe that embedding complex logic in templates will produce spaghetti.

See also http://stackoverflow.com/questions/70913/which-python-framew... and http://www.quora.com/What-is-the-best-Python-Web-Framework-t...

Post reply on HN