
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
결과가 계속 에라뜨네요
from pymongo import MongoClient
import certifi
ca = certifi.where()
client = MongoClient("mongodb+srv://test:sparta@cluster0.pwllcbl.mongodb.net/Cluster0?retryWrites=true&w=majority",
tlsCAFile=ca)
db = client.dbsparta
all_users = list(db.users.find({})),{'_id':False}))
for user in users:
print(user)
