Answers for "python mongodb get collection data without id"

Go
0

get data from pymongo without id

# To get data from pymongo without _id
db.test.find({query},{"_id":0})
# Second tuple denotes the exclude
Posted by: Guest on January-07-2021

Code answers related to "python mongodb get collection data without id"

Browse Popular Code Answers by Language