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?
|
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?
| ||||
|
feedback
|
|
I assume you have not read the MongoEngine claim.
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. | |||||
feedback
|
|
mongoengine will use the pymongo driver to connect to mongodb. If you are familiar with django.. use mongoengine | |||
|
feedback
|
|
Probably way too late, but for anyone else attempting Django+Mongo, Django-nonrel is worth considering. | |||
|
feedback
|