gpt4 book ai didi

python - 使用 pymongo 将自定义 python 对象编码为 BSON

转载 作者:行者123 更新时间:2023-12-04 12:41:47 25 4
gpt4 key购买 nike

有没有办法告诉 pymongo 使用自定义编码器将 python 对象转换为 BSON?

具体来说,我需要将 numpy 数组转换为 BSON。我知道我可以手动确保在将每个 numpy 数组发送到 pymongo 之前将其转换为 native python 数组。但这是重复且容易出错的。我宁愿有一种方法来设置我的 pymongo 连接来自动执行此操作。

最佳答案

你需要写一个 SONManipulator .来自 docs :

SONManipulator 实例允许您指定要由 PyMongo 自动应用的转换。

from pymongo.son_manipulator import SONManipulator

class Transform(SONManipulator):
def transform_incoming(self, son, collection):
for (key, value) in son.items():
if isinstance(value, Custom):
son[key] = encode_custom(value)
elif isinstance(value, dict): # Make sure we recurse into sub-docs
son[key] = self.transform_incoming(value, collection)
return son
def transform_outgoing(self, son, collection):
for (key, value) in son.items():
if isinstance(value, dict):
if "_type" in value and value["_type"] == "custom":
son[key] = decode_custom(value)
else: # Again, make sure to recurse into sub-docs
son[key] = self.transform_outgoing(value, collection)
return son

然后将其添加到您的 pymongo 数据库对象中:
db.add_son_manipulator(Transform())

请注意,您不必添加 _type如果您想将 numpy 数组默默地转换为 python 数组,请使用字段。

关于python - 使用 pymongo 将自定义 python 对象编码为 BSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15818712/

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