[Answer]-AppEngine 1.7.6 and Django 1.4.2 release

1👍

If what you want is to use controllers, views and form validations you still can do it.

Django comes built-in in Google App Engine, so you can write your Django application inside. What’s the problem? That Django models are relational but datastore is not. You have 2 options there:

  • Use CloudSQL, that way you will be able to use normal Django models with a MySQL-like database.
  • Use everything from Django but the models. Just don’t use Django ORM, and use the GAE SDK instead. Or even NDB. You will loose some things like ModelForms, but it can make the work.
👤pyriku

0👍

The django library built into GAE is straight up normal django that has an SQL ORM. So you can use this with Cloud SQL but not the HRD.

django-nonrel is up to 1.4.5 according to the messages on the newsgroup. The documentation, unfortunately, is sorely behind.

Leave a comment