
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
제가 뭘 잘못한 건지 모르겠어요. 연결이 안되는데 확인 좀 부탁드릴게요.


from pymongo import MongoClient
client = MongoClient('mongodb+srv://test:<password>@cluster0.wl7lnci.mongodb.net/?retryWrites=true&w=majority')
db = client.dbsparta
doc = {
'name':'bob',
'age':27
}
db.users.insert_one(doc)
