Auteur van MongoEngine hier - MongoEngine is gebouwd op pymongo, dus je kunt natuurlijk ook naar pymongo gaan - of onbewerkte pymongo in je code gebruiken!
Er zijn enkele documenthelpers die u toegang geven tot onbewerkte pymongo-methoden in MongoEngine, bijvoorbeeld:
class Person(Document):
name = StringField()
# Access the pymongo collection for the Person document
collection = Person._get_collection()
collection.find_one() # Use raw pymongo to query data