Reputation: 11467
AppEngine 1.7.6 has promoted Django 1.4.2 to GA. I wonder how and if people this are using The reason for my question is that Django-nonrel seems to be stuck on Django 1.3 and there are no signs of an updated realease.
What I would like to use from Djano are controllers, views and especially form validations.
Upvotes: 0
Views: 161
Reputation: 15143
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.
Upvotes: 0
Reputation: 1291
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:
ModelForms
, but it can make the work.Upvotes: 1