[Fixed]-Should I use google-app-engine-django or app-engine-patch or neither or something else?

11👍

I am assuming you want to run django on app engine (otherwise using appengine API directly is the best solution).

Altho’ Google App engine supports django 1.0 out of the box, django admin, auth doesn’t work on it, as they are dependent on the models.

Appengine patch patches django to make the admin work even on the Bigtable API.

Appengine patch also often makes sure to work on the latest release of django.

So, again, “You should use App engine patch”

👤lprsd

4👍

Google App Engine Patch seems to have died sometime around August 2009.

http://code.google.com/p/app-engine-patch/issues/detail?id=253

2👍

I think it depends on what exactly you want to develop.

You should use app-engine-patch if you need the Django Admin interface, otherwise google-app-engine-django should be enough.

0👍

Use Django patch if you already have django application that you know that you want to use. Remember that GAE comes with its own API/applications.

Leave a comment