본문 바로가기

장고(DJango)

(작성중) 장고 mysql

python에서 mysql과 통신하기 위한 패키지 설치

 

pip install mysqlclient

 

 

settings.py 수정

 

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': str(BASE_DIR / 'db.mysql'),
        'USER': 'dhdgn',
        'PASSWORD': '12341234',
        'HOST': 'localhost',
        'PORT': '3306',
    }
}