from pymongo import MongoClient
client= MongoClient('localhost',27017)
db= client['firstexam']
collection= db['person']
for x in collection.find():
print(x)
Düşünce Mezarlığı
Personel Message: π ,∞, %79, α
Personel Message: π ,∞, %79, α
from pymongo import MongoClient
client= MongoClient('localhost',27017)
db= client['firstexam']
collection= db['person']
for x in collection.find():
print(x)