Tagged Questions
The listproperty tag has no wiki summary.
1
vote
3answers
147 views
Is it possible to dynamically name attributes in an App Engine Model?
setattr allows you to dynamically name attributes in Python classes. I'm trying to do something similar with an App Engine Model:
class MyModel(db.Model):
def __init__(self, *args, **kwargs):
...
1
vote
3answers
130 views
Sorting a StringListProperty based on position of element in app engine
I have model which looks like this:
class Example (db.Model) :
name = db.StringProperty()
tags = db.StringListProperty()
I first query for a tag to get the list of entities which have them:
...
1
vote
2answers
954 views
Puzzling App Engine Datastore Issue (ListProperty)
Ok so I have the same python code locally and in the gae cloud.
when I store an entity locally, the ListProperty field of set element type datetime.datetime looks like so in the Datastore Viewer:
...
1
vote
3answers
547 views
Google App Engine: Saving a list of objects?
I need to save in my model a list of objects from a certain class on the datastore.
Is there any simple way to archive this with ListProperty and custom property's without going into ...
0
votes
1answer
81 views
Querying datastore for all models that contain a certain element within a listproperty
Hey, I have a model like this:
class List(db.Model):
user = db.ReferenceProperty(User)
listname = db.StringProperty()
published = db.DateTimeProperty(auto_now_add=True)
score = ...
0
votes
2answers
406 views
AppEngine Datastore get entities that have ALL items in list property
I want to implement some kind of tagging functionality to my app. I want to do something like...
class Item(db.Model):
name = db.StringProperty()
tags = db.ListProperty(str)
Suppose I get a ...
0
votes
2answers
221 views
google app engine - how to get ListProperty from an html form's input type=“text”
i have an aplication that takes some parameters through an html form and then creates a model entity. The problem is, that whatever i try, i get an error like this:
BadValueError: Property xxx must ...
0
votes
1answer
149 views
How Do List Properties Impact the Index Entries per Entity in Google App Engine?
I know that there is a limit of 5000 index entries per entity, which
means I can't do things like this:
class Foo(db.Model):
x = db.ListProperty(int)
y = db.ListProperty(int)
foo1 = Foo(x = ...
0
votes
1answer
183 views
Using GQL sort by the count of a ListProperty
If I have an db.Model object such as:
class Foo(db.Model):
title = db.StringProperty()
bars = db.ListProperty(db.Key)
and I wanted to query the datastore for all of the Foo entities and ...
0
votes
2answers
136 views
how to create one-to-many relevance on google-app-engine
like one forum has many topic ,
ths specific is : forum and topic has the same model :
class Geo(db.Model):
#self = db.SelfReferenceProperty()
title = db.StringProperty()
link = ...
0
votes
1answer
304 views
App engine StringListProperty
I have a model which looks like this:
class test (db.Model) :
tagList = StringListProperty()
siteName = StringProperty()
I am storing tags in "tagList" and would like to run a query where I can ...
-1
votes
1answer
309 views
how to Reference some model in a db.ListProperty on google-app-engine
this is my model:
class Geo(db.Model):
entry = db.ListProperty(db.Key)
geo=Geo()
geo.entry.append(otherModel.key())
and the html is :
{% for i in geo.entry %}
<p><a href="{{ ...