pwManager
pwManager copied to clipboard
"secret"
- from secret import get_secret_key
- cannot import name 'get_secret_key' from 'secret'
In secret.py:
def get_secret_key():
return "SECRET_KEY"
where SECRET_KEY is your secret key
In secret.py:
def get_secret_key(): return "SECRET_KEY"
where SECRET_KEY is your secret key
secret is a built in python module, so u shouldnt call a file "secret.py"