Un'altra opzione è MongoEngine . L'ORM per MongoEngine è molto simile all'ORM utilizzato da Django.
Esempio (dal tutorial):
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()