Metadata-Version: 2.0
Name: sostore
Version: 0.6
Summary: SQLite Object Store - An absurdly simple object "database" for Python
Home-page: https://bitbucket.org/ArmstrongJ/sostore/overview
Author: Jeffrey Armstrong
Author-email: jeffrey.armstrong@approximatrix.com
License: GPL3
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

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.

More help is available at: http://sostore.readthedocs.org/en/latest/



