Има примери за това в цялата документация, Google и този сайт.
Някои препратки:
- http://api.mongodb.org/python/current/ examples/aggregation.html
- http://docs.mongodb.org/manual/reference/aggregation /група/
- http://docs.mongodb.org/manual/reference/aggregation /сума/
И за някакъв код:
self.db.aggregate(
# Lets find our records
{"$match":{"Time":{"$gte":100,"$lte":1000}}},
# Now lets group on the name counting how many grouped documents we have
{"$group":{"_id":"$name", "sum":{"$sum":1}}}
)