get data from pymongo without id code example
Example: get data from pymongo without id
# To get data from pymongo without _id
db.test.find({query},{"_id":0})
# Second tuple denotes the exclude
# To get data from pymongo without _id
db.test.find({query},{"_id":0})
# Second tuple denotes the exclude