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.