micromongo icon indicating copy to clipboard operation
micromongo copied to clipboard

tiny fast python orm-ish tools for mongodb

Results 2 micromongo issues
Sort by recently updated
recently updated
newest added

``` # pymongo version 2.4.1 # python 2.7.3 from bson.dbref import DBRef from micromongo import * c = connect() class Foo(Model): collection = 'tests.foos' class Bar(Model): collection = 'tests.bars' f...

I think I have figured out that this issue is more of a limitation that a bug. Its because the wrapper classes are associated by collection, then there is no...