On Aug 24, 9:30 pm, mack the finger <nbvf...@gmail.com> wrote:
> I'm considering starting a project, and am leaning towards using
> google app engine instead of the traditional LAMP stack. The problem
> is that with app engine, you can't use django models, or anything else
> that depends on django models, which means no modelforms, no admin, no
> authentication, no third party-apps, etc. This is a huge drawback for
> me.
>
> Lately there has been some work getting non-relational databases
> working with django.  In lieu of all of that, what is the likelihood
> that in the near future django will grow the ability to work more
> natively with app engine?

Django-nonrel with djangoappengine is what you're searching for:
http://www.allbuttonspressed.com/projects/django-nonrel
http://www.allbuttonspressed.com/projects/djangoappengine

With that combo you can use Django's models on App Engine (which
includes modelforms, admin, auth, etc.). 3rd-party apps like django-
socialauth work, too, but apps which depend on JOINs won't work
because the App Engine datastore doesn't support JOINs. We do plan to
solve that, too, but that'll take some time.

Then, when Django 1.3 gets official nonrel support we'll port
djangoappengine to that, so you can continue to use your code, but
this time with the official Django release.

So, basically, start with Django-nonrel now and then switch to Django
1.3 when it's out.

Also, if you want to manage your media/assets you should have a look
at django-mediagenerator. Unlike most alternative solutions it works
in sandboxed environments like App Engine (which should be important
to you ;) and it's very feature-rich.
http://www.allbuttonspressed.com/projects/django-mediagenerator

Bye,
Waldemar Kornewald

--
Django on App Engine, MongoDB, ...? Browser-side Python? It's open-
source:
http://www.allbuttonspressed.com/blog/django

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to