Reputation: 2136
I am new to google app engine , so the question may sound stupid. How to get string form of the ndb key object i tried str() method but it does not return the complete key.
Upvotes: 1
Views: 526
Reputation: 599600
You can use the urlsafe() method.
urlsafe()
See the documentation.
Upvotes: 2