麻烦转换mongo shell聚合函数到pymongo

时间:2017-06-18 16:36:13

标签: python mongodb

我已经在这几个小时内苦苦挣扎,我无法在网上找到一个好的解决方案。

    pipeline = [

    {"$project":
{
    "index": {"$cond": { {"$and":[{ "$gt": [{ "$indexOfArray": ["$index.championId", 17]}, 5]},
{"$lt": [{ "$indexOfArray": ["$index.championId", 22]}, 6]}]}
,{"$slice": ["$playerInfo.info", 0, 5]}, {"$slice": ["$playerInfo.info", 5, 5]}}},
"team_a_champ": { "$slice": ["$playerInfo.info.championId", 0, 5]},
"team_b_champ": { "$slice": ["$playerInfo.info.championId", 5, 5]}
}},
 { "$match": { "$or":[
{ "$and":[{ "team_a_champ" : 17 }, {"team_b_champ":22}, {"index.stats.win":True}]},
{ "$and":[{ "team_a_champ" : 22 }, {"team_b_champ":17}, {"index.stats.win":True}]}]}},
{
    "$project":
        {
            "new_idx": {"$arrayElemAt": ["$index", {"$indexOfArray": ["$index.championId", 17]}]}
        }
},
{
    "$project":
        {
            "stats": ["$new_idx.stats.item0", "$new_idx.stats.item1", "$new_idx.stats.item2", "$new_idx.stats.item3",
                      "$new_idx.stats.item4", "$new_idx.stats.item5"]
        }
},
{
    "$sort":
        {"stats": -1}
},
{"$unwind": "$stats"},
{
    "$group":
        {
            "_id": "$stats",
            "count": {"$sum": 1}
        }
},
{"$match": {"_id": {"$gt": 0}}},
{"$sort": {"count":-1, "_id": -1}},
{"$limit": 6}
]

我已将字符串放在重要部分周围,但它只返回TypeError:unhashable类型:' dict'而在mongoShell数据库中,它可以工作。

请帮忙!或者至少给我一些关于如何转换它的舒适文档。我找不到任何东西!

1 个答案:

答案 0 :(得分:0)

我遇到的问题是缺少"如果","那么"和"否则"在$ cond标签中。