It looks like you just want to get the first object from your request. What query.get()for.
query = NDB_Model.query(NDB_Model.some_property == some_value)
entity = query.get()
if entity is not None:
From the docs:
Returns the first result of the request, if any (otherwise None). This is similar to calling q.fetch (1) and returning the first element of the result list.
query.fetch(n), n - . , len() .