Userpy
An easy app for managing users.
Installing
pip install userpy
Functions
create - creates a database
Register - Check password, hash and insert to the database
Login - check login credentials (returns True or Fales)
password_hash - hash password
check_password - verifys only password (returns True or Fales)
import user_management as um
um.create(DataBaseName)
um.Register(UserName, Password, Confirm_Password)
isAuthenticated = um.Login(UserName, Password)
hashed_password = um.password_hash(Password)
isPasswordValid = um.check_password(Password, Hashed_Password)
created by ofri kirshen