如何使用Pymongo将自定义的Python对象编码为BSON?

如何使用Pymongo将自定义的Python对象编码为BSON?

要使用 Pymongo 将自定义的 Python 对象编码为 BSON,您需要编写一个 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): # 确保我们递归到子文档中。
        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: # 再次确保递归到子文档中。
          son[key] = self.transform_outgoing(value, collection)
    return son

然后将其添加到您的 pymongo 数据库对象中 −

db.add_son_manipulator(Transform())

请注意,如果您想将 numpy 数组静默转换为 python 数组,则无需添加 _type 字段。

阅读更多:Python 教程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程