+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
Add this in main.py right after the initial imports.
pr1001
This fails for me, saying there is no module named "django". I'm using GAE with Django .96 right now.
Rosarch
@Rosarch: http://stackoverflow.com/questions/2568257/google-app-engine-python-importerror-no-module-named-django/3748088#3748088
TheOsp