この例は、ドキュメント、Google、およびこのサイト全体にあります。
いくつかの参考文献:
- http://api.mongodb.org/python/current/ examples / aggregation.html
- http://docs.mongodb.org/manual/reference/aggregation / group /
- http://docs.mongodb.org/manual/reference/aggregation / sum /
そして、いくつかのコードについて:
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}}}
)