Ask HN: Best Python Framework for Google App Engine?
11–20 of 48 posts
Re: Ask HN: Best Python Framework for Google App Engine?
#12Re: Ask HN: Best Python Framework for Google App Engine?
#13Re: Ask HN: Best Python Framework for Google App Engine?
#14Re: Ask HN: Best Python Framework for Google App Engine?
#15Flask, despite being a micro-framework, is extremely powerful. It's core is well-written and there's a lot of useful extensions out there (like Flask-WTF or Flask-Assets). Flask also works really well with Google App Engine (see example skeleton: https://github.com/kamalgill/flask-appengine-template; there's more on GitHub). With little effort you get WTForms and even Webassets support almost out of the box, in really elegant way.
Tornado will also do, since it's very similar to webapp and has very good templating system. However, since extensions ecosystem for Tornado is almost non-existent, one has to write more code to make up for it (e.g. integration with Webassets, management commands, OAuth support etc.).
There's also Tipfy, but I have absolutely no experience with it, so I can't vouch for it.
Re: Ask HN: Best Python Framework for Google App Engine?
#16It's basically a superset of webapp with some great additions and tweaks.
Re: Ask HN: Best Python Framework for Google App Engine?
#17Flask. Docs: http://flask.pocoo.org/
Flask and Jinja2 make views and templates really easy, and the AppEngine data store fits well for the models.
Re: Ask HN: Best Python Framework for Google App Engine?
#18Flask. Docs: http://flask.pocoo.org/
Seconded. We used the flask-appengine-template ( https://github.com/kamalgill/flask-appengine-template ) and it's been great so far. Flask and Jinja2 make views and templates really easy, and the AppEngine data store fits well for the models.
Re: Ask HN: Best Python Framework for Google App Engine?
#19Flask. Docs: http://flask.pocoo.org/
Re: Ask HN: Best Python Framework for Google App Engine?
#20Tipfy