Pymongo के साथ कस्टम अजगर वस्तुओं को 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): # 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 सरणी डालना चाहते हैं तो आपको _type फ़ील्ड जोड़ने की आवश्यकता नहीं है।