Metadata-Version: 2.1
Name: MongoDBProxy-official
Version: 0.1.0
Summary: Proxy around MongoDB connection that automatically handles AutoReconnect exceptions.
Home-page: https://github.com/arngarden/MongoDBProxy
Author: Gustav Arngarden
Author-email: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Requires-Dist: pymongo

MongoDBProxy
============

MongoDBProxy is used to create a proxy around a MongoDB-connection in order to
automatically handle AutoReconnect-exceptions.  You use MongoDBProxy in the
same way you would an ordinary MongoDB-connection but don't need to worry about
handling AutoReconnects by yourself.

Usage::

    >>> import pymongo
    >>> import mongo_proxy
    >>> safe_conn = mongo_proxy.MongoProxy(pymongo.MongoReplicaSetClient(replicaSet='blog_rs')
    >>> safe_conn.blogs.posts.insert(post)  # Automatically handles AutoReconnect.

**See here for more details:**
`<http://www.arngarden.com/2013/04/29/handling-mongodb-autoreconnect-exceptions-in-python-using-a-proxy/>`_

**Contributors**:

- Jonathan Kamens (`<https://github.com/jikamens>`_)
- Michael Cetrulo (`<https://github.com/git2samus>`_)
- Richard Frank (`<https://github.com/richafrank>`_)
- David Lindquist (`<https://github.com/dlindquist>`_)


