Earlier it was necesary to install google-app-engine-django helper and distribute Django in zip. But how should I use it now after that they updated Google App Engine with Django 1.0.2.
+5
A:
in your code you need to add
from google.appengine.dist import use_library
use_library('django', '1.0')
The documentation in your 3rd link talks you through the process quite well but remember that its not in the SDK yet so you will have to update your local version manually
AutomatedTester
2009-07-23 15:29:53
Add this in main.py right after the initial imports.
pr1001
2009-10-04 00:27:10
This fails for me, saying there is no module named "django". I'm using GAE with Django .96 right now.
Rosarch
2010-03-06 18:48:35
@Rosarch: http://stackoverflow.com/questions/2568257/google-app-engine-python-importerror-no-module-named-django/3748088#3748088
TheOsp
2010-09-20 00:51:09