[Fixed]-Google App Engine or Django?

8👍

Google App Engine is an infrastructure on which you can “build and host apps.” Though not a web app framework itself, it does provide a simple web app framework called webapp (partially built on top of another framework WebOb).

There are numerous, detailed posts on choosing a Python-based web app framework:

2👍

You can choose both with djangoappengine from All Buttons Pressed.

1👍

I believe that Django is better because it gives more flexibility with features and also with hosts. Djangobook.com has a very good tutorial.

0👍

If you plan to use Django on app engine, then chances are you will want to use Djangos ORM. Which means.. you will probably be looking at Django non-rel. However there are a few things to consider:

  1. Django non-rel runs a few versions behind the latest django release, so some modern features (such as advanced timezone support) are not supported, as of the moment, you will just have to wait.

  2. Django non-rel does not support some features such as Django’s transactions API and none of the native app engine transaction modules work ether.

so all in all, fine for a small simple projects, but when things get more complicated, django non-rel falls short.

Leave a comment