Managing the Blobstore with Python

GAE Blobstore is a great way to manage big files. This post is about using the Blogstore with Python and the Django GAE Helper (appengine_django). Views.py: from google.appengine.ext import blobstore # import other django stuff def show_upload_form(request): template...

Uploading bulk data to data store

The documentation on how to upload bulk data to Google App Engine’s data store: http://code.google.com/intl/es/appengine/docs/python/tools/uploadingdata.html How to express relationships between models? How to support utf-8 in the bulk load? Here is my loader.py...