Lets say I have email of user
user = User.objects.get(email="anyone@anymail.com")
Now I want to login this user like:
user = authenticate(username=username, password=user.password)
Authenticate do not take hashed password. But here i can only get hashed password. How can I login this user lets say to change its password
Thank you