Top "Mongoengine" questions

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

PyMongo/Mongoengine equivalent of mongodump

Is there an equivalent function in PyMongo or mongoengine to MongoDB's mongodump? I can't seem to find anything in the …

python mongodb pymongo mongoengine
Embedded Documents issue with MongoEngine

I am using MongoDB with Flask-MongoEngine as my ORM component to my web app. I have structured the User document …

python mongodb flask mongoengine flask-mongoengine
Flask and Mongo

Thinking of a web service entirely built on top of MongoDB, while I am pretty confortable with PyMongo, I would …

mongodb flask mongoengine mongokit
Use MongoEngine and PyMongo together

I want to use MongoEngine for my next project. Now I'm wondering whether I could also use PyMongo directly in …

mongodb pymongo mongoengine
Return MongoEngine Documents as JSON

Not too sure if this is really simple or not, but I can't really find anything on the topic. But, …

python flask mongoengine
Dropping all collections in Mongoengine

I have searched the api, but can't find anything relating to the dropping of a database without iterating through the …

python mongodb mongoengine
MongoEngine User authentication (django)

I am trying to use MongoEngine in a django project I am writing. I am having difficulty getting (or understanding …

python django authentication mongoengine
how to do pagination using mongoengine?

i have a question about pagination using mongodb and mongoengine. i have a table which will have millions of records …

django mongodb pagination mongoengine
MongoEngine: storing EmbeddedDocument in DictField

I'm modelling a MongoDB database in MongoEngine for a web project. I want to store the data in a slightly …

python mongodb mongoengine flask-mongoengine nosql
MongoEngine Document Object made using from_json doesn't save

I am trying to build a document object using from_json method. object.save() throws no error, but the document …

python mongodb pymongo mongoengine flask-mongoengine