You can use the check_password function available in Django.
from django.contrib.auth.hashers import make_password, check_password
password = 'testpassword123'
django_hash = make_password(password)
is_verified = check_password(password, django_hash)
Some links :