The best way to do this is to programmatically read data warehouse statistics. See Docs for this in Python or Java . Here is a simple example in Python:
>>> from google.appengine.ext.db import stats
>>> kinds = stats.KindStat.all().fetch(1000)
>>> kind_names = [x.kind_name for x in kinds]
>>> kind_names
[u'A', u'AAFoo', u'AModel', u'ASDBD', u'Abc', u'Accumulator', u'Activity',
You can check it out for yourself in the interactive console .
Data warehouse statistics also provide piles of other details that will be useful when writing a data warehouse management tool. Good luck
source
share