Tagged Questions
0
votes
2answers
57 views
Django model Meta option unique_together for appengine
I have an app on appengine that stores some data fields entered by user. I want to prevent redundant entries, i.e. if all fields are same, data should not be entered in database.
(Optional) If ...
1
vote
0answers
40 views
Implementing Structured Properties in django model
Google appengine has a model field called Structured Properties which can store a list of models inside another model inside a model. See it here:
...
0
votes
1answer
106 views
Django, Google App Engine, datastore, user login
I am trying to setup a web app in django and deploy on GAE, I already had a setup for GAE,social-auth ( django-social-auth), now I am trying to add userena, to handle the user login; however, it ...
0
votes
2answers
120 views
Google App engine, django, userena, database setup
I am trying to build a web app with GAE, Django. The user registration would be userena. I already use the django-nonrel and all the setup to get the first part working and I am trying to syncdb for ...
2
votes
1answer
78 views
Jinja2 to display image in browser
mymodel.url is textproperty(string) which is something like this
<a href ='http://www.abc.com'><img src='http://xyz.com/></a><img src="http://www.abcdefd.com" />
In ...
1
vote
0answers
59 views
GAE: db Model property using 'name' param
Trying to optimise db model class property name by using name in the property.
Ex.
class terminals(db.Model):
location_code = db.StringProperty()
terminal_code = db.StringProperty(default='')
...
1
vote
2answers
222 views
Trying Django tutorial with djangoappengine
I was trying to implement the poll app tutorial of Django using djangoappengine.
Steps I took:
1)Copied the test-app in workspace folder.
2)Copied django-toolbox, dbindexer, django, ...
0
votes
1answer
67 views
Error for importing GAE API in model.py
In my model.py, I'm importing images to generate url for pictures as below.
from google.appengine.api import images
class Picture(models.Model):
picture_blob_key = models.TextField()
def ...
0
votes
1answer
47 views
need help “translating” these sql into django models
i am very new with gae and i havent find an easy to follow example.
here is my sql:
CREATE TABLE Company
(
name varchar(100),
address varchar(100),
lat double(20, 10),
long ...
2
votes
1answer
119 views
How to edit information submitted using Django forms in Google App Engine
Thank you for the tips. Maybe I can edit this to explain it a little better...
I'm writing an application for Google App Engine where I would like to do a GQL query to get all the evaluations of each ...
0
votes
1answer
349 views
ImportError: No module named appengine.ext
I am new to Google appengine and django , While I am running my simple sample django on appengine project I got this error,
ImportError: No module named appengine.ext
From some sources it is ...
0
votes
1answer
106 views
Using Django templates for Google App Engine to access an entity with specific ReferenceProperty value from a list of entities
I have been struggling with a problem in Google App Engine and Django and have not been able to locate the solution (despite finding similar problems).
Let me set the scene a bit. I have the ...
1
vote
1answer
278 views
Google App Engine and Django-nonrel: db migration
I just started "Hello World" app on GAE and Django-nonrel. I saw a couple of differences between using pure Django on relational databases and Django-nonrel. The most sadly is South migration system ...
4
votes
4answers
108 views
Please help to choose between many-to-many techniques in App Engine DB
There is going to be "articles" and "tags" in my App Engine application.
And there are two techniques to implement that (thanks to Nick Johnson's article):
# one entity just refers others
class ...
1
vote
1answer
191 views
How to implement a category system
I want to implement a category structure that works with i18n. Since GAE has builtin db.CategoryPropertybut it doesn't implement subcategories and it seems I'm using the category property as it were a ...
2
votes
2answers
506 views
How to get an entity's key when using django-nonrel on App Engine
I'm using django-nonrel (http://www.allbuttonspressed.com/projects/djangoappengine) on Google App Engine. I have my models etc. setup and everything works great. I had one question though. I want to ...
5
votes
1answer
263 views
Any app for i18n of models for django in appengine or non-sql?
I'm working in a project with django and GAE, but I need internationalization for models, I try with datatrans and django-model-i18n but both applications make a heavy use of sql in databases and ...
3
votes
1answer
406 views
Multiple text inputs in django form via Google App Engine
Goal: to create a question where a user creates a poll question that is "mad-libs" style (i.e. "Would you fool around with _(text)__ if she wasnt dating _(text)_?").
Code: This file creates a django ...
1
vote
1answer
192 views
Help in constructing a GQL query for a one to many relationship
A] Problem Summary:
I have one to many data models in my project. I need help constructing a query to get the “many” side data object based on the key of the “one” side data object.
Please refer to ...
0
votes
1answer
145 views
Form validation with django 1.2 GAE
How can I add form validation and preferably with i18n localization? I tried something like the following which doesn't work and needs to import Validationerror
class AForm(djangoforms.ModelForm):
...
4
votes
1answer
519 views
Using get or insert functionality on one to many django models and modelforms
A] Summary:
Using get or insert functionality on one to many django models, checking whether a record or relationship exists prior to adding a new one.
B] Details:
1] I have the following django ...
1
vote
1answer
432 views
Django: Using .distinct() on a query causes invalid DB query
I am trying to get the list of distinct store_names in the list of submissions.
My very simple Django model:
class Submission(models.Model):
title = models.CharField(max_length=50, null=True, ...
0
votes
2answers
177 views
Google App Engine model for Select Box
I have category model, in which I want to load some default data. How can I achieve it? This is model is for a select box, which is extensible for different applications later
This is the model I ...
3
votes
1answer
344 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
1answer
2k views
Appengine - Reportlab (Get Photo from Model)
I´m using Reportlab to generate a PDF.
Can´t retrieve a photo from a model.
#Personal Info
p.drawImage('myPhoto.jpg', 40, 730)
p.drawString(50, 670, 'Your name:' + '%s' % ...
1
vote
3answers
226 views
Django Google app engine reference issues
I am working on an application on Django and google application engine. In my application I have several models with several ReferenceProperty fields. The issue is that if any of the ...
0
votes
1answer
426 views
Equivalent replacement for ListProperty(db.Key) in djangoappengine
I and trying to use djangoappengine, but I am unsure how can I write model to incorporate standard
ListProperty(db.Key)
I know that djangotoolbox provides this field types but I am unable to ...
0
votes
2answers
316 views
Django get() query not working
this_category = Category.objects.get(name=cat_name)
gives error: get() takes exactly 2 non-keyword arguments (1 given)
I am using the appengine helper, so maybe that is causing problems. Category ...
2
votes
1answer
101 views
How do I check for Existence of a Record in GAE
I am trying to create a simple view in Django & GAE, which will check if the user has a profile entity and prints a different message for each case. I have the program below, but somehow GAE ...
1
vote
1answer
291 views
Implement auto_current_user_add when using Django's User table
I have an AppEngine app that I'm migrating to run in Django, using app-engine-patch to get all the goodness of Django - particularly the Admin interface.
One of my models looks like (partially) this:
...
1
vote
1answer
332 views
App Engine model filtering with Django
hi i am using django app engine patch i have set up a simple model as follows
class Intake(db.Model):
intake=db.StringProperty(multiline=False, required=True)
#@permerlink
def ...
1
vote
2answers
476 views
Diference between appengine_django BaseModel and db.Model
I'm using the Google App Engine helper for Django. This helper includes the following lines in its template:
from appengine_django.models import BaseModel
from google.appengine.ext import db
# ...
0
votes
2answers
678 views
Storing wiki revisions on Google App Engine/Django - Modifying This Existing Code
In the past, I created a Django wiki, and it was fairly straightforward to make a Page table for the current wiki entries, and then to store old revisions into a Revision table.
More recently, I ...
1
vote
2answers
394 views
Can I use Django's Generic Views with google-app-engine-django?
Put simply, is there a way to get generic views to work?
If I try the following in urls.py:
publisher_info = {
'queryset': Publisher.objects.all(),
}
urlpatterns = patterns('',
...
1
vote
1answer
633 views
appengine KindError when accessing table outside of django
I have a table called Mytable in home/models.py and using django aep
I reference is as Mytable.all().
It shows up in the Data Viewer as home_mytable
Now, for some urls within app.yaml I have a ...
1
vote
3answers
835 views
Filter and sort music info on Google App Engine
I've enjoyed building out a couple simple applications on the GAE, but now I'm stumped about how to architect a music collection organizer on the app engine. In brief, I can't figure out how to ...
0
votes
4answers
2k views
Google app engine ReferenceProperty relationships
I'm trying to get my models related using ReferenceProperty, but not have a huge amount of luck. I have 3 levels: Group, Topic, then Pros, and Cons. As in a Group houses many topics, and within each ...
1
vote
1answer
309 views
Google app engine - structuring model layout with regards to parents?
How does one go about structuring his db.Models effectively?
For instance, lets say I have a model for Countries, with properties like "name, northern_hemisphere(boolean), population, states (list of ...
1
vote
2answers
169 views
Most efficient way to match a certain number of items in a db.Model ListProperty
In reference to this different but not unrelated question I will borrow the example models.
class Foo(db.Model): bars = db.ListProperty(db.Key)
class Bar(db.Model): pass
If I have a certain Foo ...
2
votes
2answers
3k views
Google app engine tutorial problem - new datastore model
So i've just finished the google app engine greetings tutorial. All well so far. I then decided to try and add a new datastore model and then set it in the existing handler. I added a 2nd content ...
2
votes
4answers
3k views
Iterating over model attributes when creating a template in Django
I'm using Django in Google App Engine. If I have the class
class Person():
first_name = StringProperty()
last_name = StringProperty()
and I have an instance where Person.first_name = Bob ...
22
votes
4answers
4k views
Is BigTable slow or am I dumb?
I basically have the classic many to many model. A user, an award, and a "many-to-many" table mapping between users and awards.
Each user has on the order of 400 awards and each award is given to ...
3
votes
6answers
523 views
Django — I have a small app ready, Should I go on private VPS or Google App Engine?
I have my first app, not that big, but it is the first step. (next big one on the way)
Now if I want to put it on my own Linode VPS, I have to configure mod_python or mod_wsgi, as well as memcache, ...
0
votes
2answers
112 views
Object label in GAE Django
In my usual django code I use the unicode function to give each object a label...this appears in the admin interface as the oject label in the objects listed...
class apprd(models.Model):
usr = ...
4
votes
2answers
587 views
Appengine - How to change an entity of kind Model to Polymodel without losing existing entities
I am using appengine and appenginepatch for django
I have a class defined in my models that was inheriting from db.Model. I've now changed it to polymodel.PolyModel. Since making the change, my ...


