Skip to content Skip to sidebar Skip to footer
Showing posts with the label App Engine Ndb

Ndb To_dict Method Does Not Include Object's Key

I am leveraging ndb's to_dict method to convert an object's properties into a python dict. … Read more Ndb To_dict Method Does Not Include Object's Key

Ndb Model - Retrieve Ordered Set Of Property Names

I'm often asked to export data stored in NDB models to csv. For that purpose, I usually ended u… Read more Ndb Model - Retrieve Ordered Set Of Property Names

Adding A Structuredproperty To A Model In Ndb

(couldn't think of a better title :S ) So I've recently changed from db to ndb and i can… Read more Adding A Structuredproperty To A Model In Ndb

How To Check If Ndb Model Is Valid

I have a model class like: class Book(ndb.Model): title = ndb.StringProperty(required=True) … Read more How To Check If Ndb Model Is Valid

How Efficient Is Google App Engine Ndb.delete_multi()?

I'm working on something to clear my database of ~10,000 entities, and my plan is to put it in … Read more How Efficient Is Google App Engine Ndb.delete_multi()?

How To Query Parent Entity From Child Entity In Google App Engine (Python) NDB/Datastore?

My question is very fundamental, I want to know straight forward and right way to access attribute … Read more How To Query Parent Entity From Child Entity In Google App Engine (Python) NDB/Datastore?

What Is The Correct Way To Get The Previous Page Of Results Given An NDB Cursor?

I'm working on providing an API via GAE that will allow users to page forwards and backwards th… Read more What Is The Correct Way To Get The Previous Page Of Results Given An NDB Cursor?

How To Query Parent Entity From Child Entity In Google App Engine (Python) NDB/Datastore?

My question is very fundamental, I want to know straight forward and right way to access attribute … Read more How To Query Parent Entity From Child Entity In Google App Engine (Python) NDB/Datastore?