Tagged Questions

5
votes
2answers
504 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
362 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
2answers
165 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
857 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 ...
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
493 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
200 views

how can i use django session in GAE

i have an app in GAE, but i have no idea about how to use django session, although i know the app-engine-patch may be helpful. who can give me a demo how to use it for session? thank you!
1
vote
1answer
261 views

Serving simple image with App Engine django patch?

How the heck do i serve a simple img without all that MediaGenerator nonsense, in Django on App Engine? I am using app engine patch. I got layout like this: django_app_engine_project_folder my_app ...
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
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
323 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): ...