Given that gae & django persistence layers are quite similar, I’m wondering whether someone has tried creating a wrapper? Say, could be useful for utilizing django.forms.ModelForm.
Are there any fundamental problems with this?
Given that gae & django persistence layers are quite similar, I’m wondering whether someone
Share
App-engine-helper provides limited support for this, but you’re still dealing with thinly-disguised App Engine models. I’m not hugely familiar with Django’s model framework, but the basic issue is that Django’s model framework is simply too tied to relational databases to easily move to the App Engine backend.
You can use a variant of ModelForms, built right into the App Engine SDK, though – see here for details.