A Python tool that checks the strength of a password.
- Detects weak, medium, and strong passwords
- CLI usage
- Comes with unit tests (pytest)
Clone the repo and install dependencies:
git https://github.com/deekondarajesh/password-checker.git
cd password-checker
python -m venv .venv
# Activate venv
# Windows:
.venv\Scripts\activate
# Mac/Linux:
source .venv/bin/activate
pip install pytest