Begginer: problem with connecting to db

Hello,
I am new to django. I was trying to connect with postgredb and i am getting this error.
django.db.utils.OperationalError: fe_sendauth: no password supplied.

i have passed this values to the variables in settings.py
DATABASES = {
‘default’: {
‘ENGINE’: ‘django.db.backends.postgresql_psycopg2’,
‘NAME’: ‘db’,
‘USER’: ‘usename’,
‘PASSOWORD’: ‘password’,
‘HOST’:‘localhost’,
‘PORT’: ‘5432’,
}
}

Thanks!

DATABASES is a dictionary. Django is looking for the value with the key PASSWORD, which isn’t there (it’s PASSOWORD in your code).

-Jorge

hi jorge,
thanks for your reply.
it worked.