For one of my projects I prefered using Django+Mongo.

Why should I use MongoEngine, but not just PyMongo? What are advantages? Querying with PyMongo gives results that are allready objects, aren't they? So what is the purpose of MongoEngine?

link|improve this question

69% accept rate
feedback

3 Answers

up vote 7 down vote accepted

I assume you have not read the MongoEngine claim.

MongoEngine is a Document-Object Mapper (think ORM, but for document databases) for working with MongoDB from Python.

This basically say it all.

In addition: your claim that Pymongo would deliver objects is wrong....well in Python everything is an object - even a dict is an object...so you are true but not in the sense of having a custom class defined on the application level.

PyMongo is the low-level driver wrapping the MongoDB API into Python and delivering JSON in and out.

MongoEngine or other layers like MongoKit map your MongoDB-based data to objects similar to native Python database drivers + SQLAlchemy as ORM.

link|improve this answer
1  
Ok. And which db backend would you prefer? – megido May 3 '11 at 8:11
feedback

mongoengine will use the pymongo driver to connect to mongodb.

If you are familiar with django.. use mongoengine

link|improve this answer
feedback

Probably way too late, but for anyone else attempting Django+Mongo, Django-nonrel is worth considering.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.