Další možností je MongoEngine . ORM pro MongoEngine je velmi podobný ORM, který používá Django.
Příklad (z tutoriálu):
class Post(Document):
title = StringField(max_length=120, required=True)
author = ReferenceField(User)
class TextPost(Post):
content = StringField()
class ImagePost(Post):
image_path = StringField()
class LinkPost(Post):
link_url = StringField()