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?
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
494 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
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
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
667 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
305 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
1answer
132 views
app-engine-patch and “object_detail” view didn't work
Hi(Sorry for my ugly english)
I want to use the app-engine-patch and google app engine to create a simple blog, and use the django generic views handle the blog entry page.
But when I use Django's ...
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
558 views
Multi choice form field in Django
I'am developing application on app-engine-path.
I would like to make form with multichoice (acceptably languages for user).
Code look like this:
Language settings:
settings.LANGUAGES = ((u"cs", ...
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
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
810 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.
...