
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
저번에 Mongo DB연결 부분에서 네트워크 환경에 따라 입력해주어야 하는 부분이 달라서 mport certifi와 ca = certifi.where() / tlsCAFile=ca 이 부분을 입력해주어서 문제를 해결했었습니다.
그런데 이번에 Mongo DB에 데이터를 넣어주는 과정에서 또 오류가 생겨 질문 드립니다..ㅠㅠ


from pymongo import MongoClient
import certifi
ca = certifi.where()
client = MongoClient('mongodb+srv://test:sparta@cluster0.69wr4gu.mongodb.net/Cluster0?retryWrites=true&w=majority', tlsCAFile=ca)
db = client.dbsparta
db.users.insert_one({'name':'bobby','age':27})
db.users.insert_one({'name':'john','age':20})
db.users.insert_one({'name':'ann','age':20})
