Alex Bolotov
Alex Bolotov

Reputation: 8971

Google App Engine with Django 1.0.2

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.

Upvotes: 2

Views: 1145

Answers (1)

AutomatedTester
AutomatedTester

Reputation: 22418

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

Upvotes: 5

Related Questions