TIL_230810

Sol Lee·2023년 9월 19일
0
post-custom-banner

오늘 한 일

MongoDB

난 스파르타 코딩클럽의 웹개발 종합반 강의를 보면서 그대로 따라했기 때문에 로컬에 DB를 생성하고 Studio 3T 라는 프로그램을 별도로 설치하여 데이터베이스를 확인하며 작업을 진행했다.

나중에 다른 팀원분과 작업한 것을 합치면서 보니 그분은 MongoDB Atlas로 원격 DB를 생성하여 다양한 클라우드 호스팅이 가능하도록 작업하고 계셨다.

# 로컬 DB 사용

from pymongo import MongoClient

client = MongoClient('localhost', 27017)
db = client.dbsparta


# 다른 팀원 분이 작성

from pymongo import MongoClient
import certifi

ca = certifi.where()
client = MongoClient('mongodb+srv://커넥션스트링', tlsCAFile = ca)
db = client.dbsparta
profile
직업: 개발자가 되고 싶은 오레오 집사
post-custom-banner

0개의 댓글