Get All Fields From App Engine Expando
To get a dictionary of all the fields, including dynamic fields, from an appengine datastore Expando (or even Model) class, add this method to your model:
def getFields(self):
combinedDict = self.properties()
combinedDict.update(self._dynamic_properties)
return combinedDict
No comments yet






