views:

103

answers:

1

What is the best procedure/plugging to use to integrate django and google app engine? I have read many articles in the internet and seen videos on how to go round this. Am still left wondering which is the best procedure to use.

Is there an official procedure documented in django or google app engine. Examples and site references will really help.

Am using Python 2.6, Django 1.1

Gath

+3  A: 

There is NO way you can run Python 2.6 on App Engine: it's 2.5 only.

If you're rarin' to have Django 1.1 (with Python 2.5), I suggest app-engine patch which now supports it (it's a release candidate, not a final release, but close). I find their docs good and thorough, and their code well written and solid.

Alex Martelli
Can i run python 2.5 and 2.6 on the same machine?
gath
Yep, I do have several on my Mac for example: `which python2.5` is /usr/bin/python2.5 (Apple-supplied "system python), and `which python2.6` (-). Coexistence is no problem, just pick which one you want as the single default "python" and use explicit version numbers in the command to access any of the others.
Alex Martelli