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

时间:2013-04-04 18:17:28

标签: python numpy pymongo bson

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

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

1 个答案:

答案 0 :(得分:3)

你需要写一个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())

注意,如果要将numpy数组静默地转换为python数组,则不必添加_type字段。