I'm creating a new entity like:
some_model = ModelName(
attr1 = ...,
attr2 = ...,
attr3 = ...,
attr4 = ...
).put()
Is there anyway to get the key of this newly created entity? I tried doing some_model.key()
put that does not work.