7

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

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

4

1 回答 1

2

你需要写一个SONManipulator. 从文档

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 数组,则不必添加该字段。

于 2013-04-05T16:02:31.970 回答