Home | History | Annotate | Download | only in webapp2_extras
      1 # -*- coding: utf-8 -*-
      2 """
      3     webapp2_extras.sessions_ndb
      4     ===========================
      5 
      6     Extended sessions stored in datastore using the ndb library.
      7 
      8     App Engine-specific modules were moved to webapp2_extras.appengine.
      9     This module is here for compatibility purposes.
     10 
     11     :copyright: 2011 by tipfy.org.
     12     :license: Apache Sotware License, see LICENSE for details.
     13 """
     14 import warnings
     15 
     16 warnings.warn(DeprecationWarning(
     17     'webapp2_extras.sessions_ndb is deprecated. '
     18     'App Engine-specific modules were moved to webapp2_extras.appengine.'),
     19     stacklevel=1)
     20 from webapp2_extras.appengine.sessions_ndb import *
     21