I want to get the user by a password so when I type the following code
User.objects.get(password='test')
I get an error and I already know what is error is talking about which occurs because the password has been hashed but I want to get it, so what is the trick I need here?