dbref – Tools for manipulating DBRefs (references to documents stored in MongoDB)¶
Tools for manipulating DBRefs (references to MongoDB documents).
- class bson.dbref.DBRef(collection, id, database=None, _extra=None, **kwargs)¶
Initialize a new
DBRef.Raises
TypeErrorif collection or database is not an instance ofstr. database is optional and allows references to documents to work across databases. Any additional keyword arguments will create additional fields in the resultant embedded document.- Parameters:
See also
The MongoDB documentation on dbrefs.
- as_doc()¶
Get the SON document representation of this DBRef.
Generally not needed by application developers