python-decouple 라이브러리 설치 pip install python-decouple
pip install python-decouple
.env파일을 root 디렉토리에 생성 MONGO_URI=~
MONGO_URI=~
Python 코드에서 python-decouple를 사용하여 환경변수 불러오기
from decouple import config MONGO_URI = config('MONGO_URI') client = MongoClient(MONGO_URI)