Mongo Query In Python If I Use Variable As Value
Am trying to find documents from the mongo collection using the following query. db.collection_name.find({'id' : Id}) where Id is the variable am getting as input. But it doesn't w
Solution 1:
Try str();
Id = str(raw_input("enter id"))
cursor = db.collection_name.find({"id" : Id})
Post a Comment for "Mongo Query In Python If I Use Variable As Value"