minimongo
minimongo copied to clipboard
A lightweight, Pythonic, Object Oriented Interface to MongoDB.
I've just encountered minimongo and it looks really great, but I don't think it will work with e.g. [mongomock](https://github.com/mongomock/mongomock) out of the box. mongomock is a drop-in substitute for pymongo...
Hi, Thanks for this great ORM package. However, this project is not maintained. We created an MongoDB ORM for Python https://www.jsonclasses.com. We can use this maybe.
# Issue Type [x] Bug (Typo) # Steps to Replicate and Expected Behaviour - Examine README.rst, docs/source/index.rst and observe `dynamicly`, however expect to see `dynamically`. - Examine minimongo/config.py and observe...
This pull requests modifies options.py and model.py so that they support connecting to a MongoDB replicaset using the high-availability MongoReplicaSetClient. Documentation for this client is available at http://api.mongodb.org/python/current/examples/high_availability.html. This pull...
Currently, Pypi version of [minimongo is 0.2.8](https://pypi.python.org/pypi/minimongo) Please, update to the latest (so far 0.2.9). As a suggestion, maybe can be interesting to integrate Travis and provide automatic deployment when...
Example: ``` d = AttrDict({"a": 1, "b": 2, "c": {"d": 3, "e": [4, 5, {"f": 6, "g": 7}]}}) self.assertEqual(d.c.e[2].f, 6) # AttributeError: 'dict' object has no attribute 'f' ``` I...
Create a new `Connection` automatically, once `pymongo.errors.AutoReconnect` is raised.
I'm having a problem figuring out where/when to call minimongo.configure() in my Pyramid app, to make sure that my minimongo class actually have a valid connection to the database. The...
Currently `minimongo` looks for configuration file in a number of _special_ places: `.config`, `.app_config` etc. This sure is a nice way of doing things, but why not add a shortcut...
Right now, nested data must be of a native Python type, not of another Model.