How can I get all entity kinds from GAE server?
Is this possible?
I want to make a DB manager tool for GAE.
How can I get all entity kinds from GAE server? Is this possible? I
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The best way to do this is to programmatically read the datastore stats. See the docs for doing so in Python or Java. Here’s a simple example in Python:
You can test this for yourself in the interactive console.
The datastore stats also provide piles of other details that will be useful in writing a datastore management tool. Good luck!