I am hoping to get some help with Parsing data retrieved from the Google DataStore Client in Python.
I am required to create a process in which I have to parse some data taken from the datastore. I am currently calling to retrieve data via this method: https://cloud.google.com/datastore/docs/concepts/entities#retrieving_an_entity
If I am to print what is returned I get the below:
<Entity(u'Example', u'1000') {u'some_data': True, u'some_more_data': False}>
If I could be shown an example on how to best parse the information returned in the Dict I would be very grateful, so that I can take each property and its value in a For Each Loop. I.e:
'some_data': True
Thanks for your time, Jordan