by Carlos Ble | Sep 7, 2010 | Google App Engine, Software Development
Mapreduce API is great. We’ve got a tool now that can process tasks taking more than 30 seconds. Yeaaaahhh! This is a huge improvement. I wish we have had this tools months ago. All the examples in the documentation use the webapp framework, there aren’t...
by Carlos Ble | Sep 7, 2010 | Google App Engine
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...
by Carlos Ble | Jul 12, 2010 | Agile, Google App Engine, iExpertos, Test Driven Development
Git dice que hice el primer commit en el repositorio el dia 2 de diciembre de 2009. Sin embargo la idea se me ocurrió hace 3 años. Aquello de que el día a día no te deja, retrasó el proyecto hasta hace poco. La unica manera de poderlo llevar hacia adelante ha sido...
by Carlos Ble | Jan 19, 2010 | Google App Engine
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...