Metadata-Version: 1.1
Name: jaraco.modb
Version: 1.2
Summary: MongoDB Object DataBase (MODB) for Python objects
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: ===========
        jaraco.modb
        ===========
        
        .. contents::
        
        Overview
        --------
        
        ``jaraco.modb`` is a small, pure-Python library for persisting Python
        objects to `MongoDB <http://www.mongodb.org/>`_.
        
        ``jaraco.modb`` is written by Jason R. Coombs.  It is licensed under an
        `MIT-style permissive license
        <http://www.opensource.org/licenses/mit-license.php>`_.
        
        You can install it with ``easy_install jaraco.modb`` or grab the source
        code from the `mercurial repository
        <http://bitbucket.org/jaraco/jaraco.modb>`_.
        
        Usage
        -----
        
        ``jaraco.modb`` facilitates using `jsonpickle` to produce MongoDB-friendly
        representations of pickleable Python objects for easy storage in a MongoDB
        database.
        
        One may simply encode and decode Python objects to MongoDB
        BSON-friendly representations::
        
            class MyObject(object):
                def __init__(self, val):
                    self.val = val
        
            import jaraco.modb
            import pymongo
            mongo_collection = pymongo.Connection().mydb.mycollection
            val = MyObject(3)
            # save the object to the DB
            id = mongo_collection.save(jaraco.modb.encode(val))
            # retrieve the object from the DB
            new_val = jaraco.modb.decode(mongo_collection.find_one(id))
            assert isinstance(new_val, MyObject)
            assert new_val.val == 3
        
        Changes
        -------
        
        1.2
        ~~~
        
        * Now store naive and UTC datetimes naturally in MongoDB.
        * The encoder/decoder now subclasses the `jsonpickle` classes to more
          efficiently handle binary strings.
        
        1.1
        ~~~
        
        * Added proper support for datetime objects.
        * Added support for OrderedDictionaries.
        
        1.0
        ~~~
        
        * Initial release
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
