Metadata-Version: 1.1
Name: sostore
Version: 0.3
Summary: SQLite Object Store - An absurdly simple object "database" for Python
Home-page: https://github.com/ArmstrongJ/sostore
Author: Jeffrey Armstrong
Author-email: jeffrey.armstrong@approximatrix.com
License: GPL3
Description: sostore is a straightforward storage engine for storing and retrieving 
        dictionaries from an SQLite database.  Much of the terminology is taken
        from MongoDB as this engine was originally designed to replace a PyMongo
        implementation.
        
        This library may seem trivial because it very much is.  However, some 
        others may need a super-lightweight dictionary store.  Linking of 
        objects within the database is not supported unless explicitly handled 
        by the developer.
        
        sostore is almost certainly not performant.  It can be thread-safe as 
        long as Collection objects aren't passed around between threads as they
        contain sqlite3.Connection objects.
        
Platform: UNKNOWN
Classifier: Topic :: Database
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
