Tagged Questions

5
votes
2answers
505 views

app-engine-patch is dead. Now what is the best way to use Django on Google App Engine?

The app-engine-patch authors have officially marked this wonderful project as dead on their website. Over the last year a lot of people have asked what the best way to run Django on Google App Engine ...
4
votes
2answers
160 views

Sys.path modification or more complex issue?

I have problems with importing correctly a module on appengine. My app generally uses django with app-engine-patch, but this part is task queues using only the webapp framework. I need to import ...
4
votes
2answers
363 views

Set parent in a ModelForm in Google App Engine

I want to create an Entity Group relationship in an Entity that is being created through a ModelForm. How do I pass the parent instance and set the parent= attribute in the ModelForm?
3
votes
1answer
228 views

Browser-based strategy game in Django/GAE. Model suggestions?

I'm creating a turn and text-based strategy game in Django on Google App Engine with app-engine-patch. The simplified concept is that each player build can several different units and buildings to ...
3
votes
2answers
166 views

Does Google App Engine with app-engine-patch support emailing ADMINS upon 500 errors?

Django will email ADMINS upon 500 errors. Reading app-engine-patch docs, it claims to enable mail support, but I can't tell if it does so enough to support 500 emailing. I tried it and it doesn't ...
2
votes
2answers
858 views

Django vs GAE + Django vs GAE + other framework

I`m looking for opinion which one is better for building web applications(web sites). I have some experience with Django, and some with Google App Engine and App-Engine-Patch for Django. And it seems ...
2
votes
1answer
1k views

Images caching in browser - app-engine-patch aplication

I have a little problem with caching the images in the browser for my app-engine aplication I`m sending last-modified, expires and cache-control headers but image is loaded from the server every time. ...
1
vote
3answers
220 views

django logging: log is not created

I'm running my app on the GAE development server, with app-engine-patch to run Django. One of my views is bugged , so I want to log everything that happens. I added in myapp.views: import logging ...
1
vote
2answers
495 views

import django settings in app-engine-patch

I have a problem with Django settings. My app runs with app-engine-patch. I added a script that runs without django, and is reached directly via the app.yaml handlers. I then get this error: File ...
1
vote
1answer
311 views

Problem with local dumpdata (on django app-engine-patch)

I'm using django with app-engine-patch and I'm having this wierd problem running manage.py dumpdata from local store (works fine when I use the --remote option) I'm running a local development server ...
1
vote
5answers
288 views

Django instance start under Google App Engine

After thinking quite a while about how to make a fast and scalable web application, I am almost decided to go for a combination of Google App Engine, Python+Django, and app-engine-patch. But I came ...
0
votes
1answer
388 views

Memcache not present in App-Engine-Patch?

I'm trying to store a date into memcache using the following code: from datetime import date from google.appengine.api.memcache import Client MEMCACHE_DATE_KEY = 'date' client = Client() def ...
0
votes
1answer
671 views

Problem setting up unit testing when using app engine patch on google app engine

I'm having a lot of trouble writing unit tests for my app engine patch solution. I've asked this question on experts exchange ...
0
votes
2answers
306 views

opening file: Writing is invalid mode

path=os.path.dirname(__file__)+'/log.txt' log=open(path,"w",encoding='utf-8') I get: log=open(path,'w',encoding='utf-8') File "C:\Program ...
0
votes
0answers
205 views

How to create an empty model formset in django running on google app engine

I'm using app engine patch for an application on app engine. I have a model formset which works great for editing objects, but I can't use it for adding objects because I can't create an empty ...
0
votes
1answer
88 views

why i can't run app-engine-patch on my gae

this is app-engine-patch http://code.google.com/p/app-engine-patch/ i download it ,and unzip , but can't running on my google-app-engine launcher why ? thanks updated but the patch has ...
0
votes
2answers
484 views

appcfg.py upload_data entity kind problem

I am developing application on app-engine-path and I would like to upload some data to datastore. For example I have a model models/places.py: class Place(db.Model): name = db.StringProperty() ...
0
votes
1answer
122 views

Google App Engine with Django Patch and the Deferred library

Anyone successfully using deferred.defer library with app-engine-patch? If so please share.
0
votes
2answers
117 views

Why would a Django admin site limited to 301 entries?

I'm working on a Google App Engine project using Django. I noticed that for some reason, the Django administration system page lists only 301 entities for one model, and 301 entities for another ...
0
votes
1answer
301 views

Optimizing ModelChoiceField query in django Admin (AppEngine)

I have two models: Activity and Place. The Activity model has a ReferenceProperty to the Place model. This was working fine until the Place table started growing and now when trying to edit an ...
0
votes
1answer
430 views

How do I get PyFacebook working with the Google App Engine Patch?

I've tried to follow the advice of this question: http://stackoverflow.com/questions/984071/facebook-django-and-google-app-engine, however I've run into a number of problems. The first is that from ...
0
votes
1answer
136 views

Do fixtures with relationships work in app-engine-patch?

I have a fixture with multiple models that I'm using for testing. It works for the basic models, but fails to create the entities for the models with relationships. Is this a known limitation of ...
0
votes
1answer
324 views

AppEngine/Django: editing db.Key in the Admin app

Or, to be precise, how do I properly present a form to edit a db.ListProperty of db.Keys on a model admin page, with app-engine-patch for Django? I have a Category like this: class ...
0
votes
1answer
372 views

basic unique ModelForm field for Google App Engine

I do not care about concurrency issues. It is relatively easy to build unique form field: from django import forms class UniqueUserEmailField(forms.CharField): def clean(self, value): ...
0
votes
1answer
813 views

app-engine-patch with pyamf = No module named encoding

I'm trying to use app-engine-patch with pyamf by following this: http://pyamf.org/wiki/GoogleAppEngine because I want to migrate my Django <-> pyamf application to app-engine-patch <-> pyamf. ...