Application for password validation.
Validates:
- against password policy:
- min. 8 char
- min. 1 special char
!@#$%^&*
- min. 1 uppercase letter
- min. 1 lowercase letter
- if password was not leaked, using HaveIBeenPwned.com database API.
requests==2.28.1
- clone the repository
- create package
python3 setup.py sdist
- copy created pkg from
./dist/password_validator-0.1.tar.gz
to your project directory - install using pip
pip install password_validator-0.1.tar.gz