[Solved]-Setting up Django on Google App Engine for DataStore

4👍

The djangae project seems to be what you’re looking for. From their documentation:

Djangae (jan-gee) is a Django app that allows you to run Django
applications on Google App Engine, including (if you want to) using
Django’s models with the App Engine Datastore as the underlying
database.

It has a Database backend that supports AppEngine’s Datastore, so you can use Django’s ORM. In addition to Django’s default fields, a number of other field types are added in the project.

You should consider the list of limitations carefully though.

Leave a comment