Been hunting for an hour or so. It would appear that db.Float does not exist. Is there any way to store a list of floats in a ListProperty? Here’s the basic idea:
class Data(db.Model):
temperatures = db.ListProperty(item_type=???)
Thanks in advance.
There is a FloatProperty but that has nothing to do with
ListProperty‘s first argument, which, and I quote, is just “a Python type or class” (andfloatis explicitly listed here as a perfectly OK value type, too). IOW,should work just fine (
floatis a Python built-in identifier, of course). What problems are you seeing when you do that?