Příklady toho jsou všude v dokumentaci, na Googlu a na tomto webu.
Některé odkazy:
- http://api.mongodb.org/python/current/ example/agregation.html
- http://docs.mongodb.org/manual/reference/aggregation /skupina/
- http://docs.mongodb.org/manual/reference/aggregation /součet/
A pro nějaký kód:
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}}}
)