Ask HN: Best Python Framework for Google App Engine?
1–10 of 48 posts
Re: Ask HN: Best Python Framework for Google App Engine?
#2Docs: http://flask.pocoo.org/
Re: Ask HN: Best Python Framework for Google App Engine?
#3Re: Ask HN: Best Python Framework for Google App Engine?
#4Tornado
Re: Ask HN: Best Python Framework for Google App Engine?
#5We 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...
Re: Ask HN: Best Python Framework for Google App Engine?
#6Re: Ask HN: Best Python Framework for Google App Engine?
#7Re: Ask HN: Best Python Framework for Google App Engine?
#8None. Just use webapp and you'll be happier, and faster.
Re: Ask HN: Best Python Framework for Google App Engine?
#9Re: Ask HN: Best Python Framework for Google App Engine?
#10Tipfy