gpt4 book ai didi

python - 遍历 PyMongo 游标作为键值对

转载 作者:IT老高 更新时间:2023-10-28 13:10:15 27 4
gpt4 key购买 nike

是否可以像 dict 一样将 pymongo Cursor 作为键值对进行迭代?我正在使用 python 2.6 和 pymongo 1.9。

我试过了:

import pymongo
mongo = pymongo.Connection('localhost')
mongo_db = mongo['my_database']
mongo_coll = mongo_db['my_collection']
cursor = mongo_coll.find()
records = dict([(record_id, record) for record_id, record in mongo_cursor])

但我得到了错误:

ValueError: too many values to unpack

最佳答案

试试:

records = dict((record['_id'], record) for record in cursor)

关于python - 遍历 PyMongo 游标作为键值对,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4928274/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com