I am trying to connect Django with postgres but i am getting this error
this is my setting.py:
'default' : {
'ENGINE' : 'django.db.backends.postgresql_psycopg2',
'NAME' : 'login',
'USERNAME' : 'postgres',
'PASSWORD' :'123',
'HOST' : 'localhost',
'PORT' : '5432'
}