Encuentre registro en MongoDB con MongoDB Object Id Python

from bson.objectid import ObjectId
[i for i in dbm.neo_nodes.find({"_id": ObjectId(obj_id_to_find)})]
Hungry Herring