File size: 144 Bytes
ef1ad9e
 
 
 
 
 
1
2
3
4
5
6
7
from passlib.hash import bcrypt


def get_password_hash(password):
    hashed_password = bcrypt.hash(password)
    return hashed_password