App Engine Python SDK version 1.7.7
[gae.git] / python / google / appengine / ext / ndb / __init__.py
blobe4604f2d4b4410c1edd88c9622d15f82fbc4bccf
1 """NDB -- A new datastore API for the Google App Engine Python runtime."""
3 __version__ = '1.0.8'
5 __all__ = []
7 from tasklets import *
8 __all__ += tasklets.__all__
10 from model import * # This implies key.*
11 __all__ += model.__all__
13 from query import *
14 __all__ += query.__all__
16 from context import *
17 __all__ += context.__all__