| """NDB -- A new datastore API for the Google App Engine Python runtime.""" | |
| __version__ = '1.0.10' | |
| __all__ = [] | |
| from tasklets import * | |
| __all__ += tasklets.__all__ | |
| from model import * # This implies key.* | |
| __all__ += model.__all__ | |
| from query import * | |
| __all__ += query.__all__ | |
| from context import * | |
| __all__ += context.__all__ |