Metadata-Version: 1.0
Name: ndbunq
Version: 0.1.0
Summary: Poor man unique constraints for Google Appengine NDB
Home-page: https://github.com/vmihailenco/ndbunq/
Author: Vladimir Mihailenco
Author-email: vladimir.webdev@gmail.com
License: UNKNOWN
Description: Unique constraints for Google Appengine NDB
        ===========================================
        
        NDBUnq emulates unique constraints on Google Appengine Datastore using
        NDB hooks.
        
        Example
        =======
        
        There is full working example for Flask:
        https://github.com/vmihailenco/ndbunq-example/::
        
            import ndbunq
            from google.appengine.ext import ndb
        
        
            class User(ndbunq.Model):
                username = ndb.StringProperty(required=True)
        
                class Meta:
                    # username is guaranteed to be unique
                    unique = (('username',),)
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
