Metadata-Version: 1.1
Name: ndb-py
Version: 1.1
Author: Yugeng Hui
Author-email: hyg at pinae org
Home-page: https://github.com/node-db/ndb-py
Summary: Node database for Python
License: Apache 2.0
Description: ndb-py
        ============================================
        
        ndb-py is a light node database for Python.
        
        - Flexible Data Model
        - Expressive Query Language
        - Easy to use in Python
        
        Installation
        --------------
        
        The lastest stable is ndb-py-1.1.tar.gz
        
        .. code-block:: shell
        
            python setup.py install
            
        Getting Start
        --------------
        
        demo for ndb-py:
        
        .. code-block:: python
        
            import ndb
        
            self.node = ndb.read('example.ndb')
            reslt = ndb.execute(self.node, 'select:root->parent->child->name:/.*m/')
            print(result[0].get('name'))
            print(result[1].get('name'))
        
        Documentation
        --------------
        
        Basic documentation is hosted on README.md
        
        License
        --------------
        
        ndb-py is licensed under the Apache License, Version 2.0. See LICENSE for full license text
Keywords: python cron scheduling
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
