我如何在现有项目中插入词典列表

时间:2019-11-19 21:19:50

标签: python dictionary pymongo updates

我想用Pymongo在Python 3.8中插入一些东西 我有一个简短的问题。我有一个称为项的字典列表:

item_list = [{'name': 'abc', 'category': 'cde', 'assurance': 0.9844486508518457, 'count': 1},
            {'name': 'abc', 'category': 'cde', 'assurance': 0.7428154349327087, 'count': 1},
            {'name': 'abc', 'category': 'cde', 'assurance': 0.9954652488231659, 'count': 1}]


我也有我的数据库项目:

item = collection.find_one(<placeholder>)


现在,我尝试了以下操作:

collection.update_one(item, {"$set": {"Entity": item_list} }, True)

但这不起作用...如何插入词典列表? 谢谢。

0 个答案:

没有答案