Mini_Python_Projects
Mini_Python_Projects copied to clipboard
Password Health Checker
A simple Python tool that checks how secure a user’s password is by:
- Evaluating its strength locally (length, use of symbols, uppercase/lowercase mix, etc.).
- Using the HaveIBeenPwned API to check if the password has appeared in known data breaches.
The app can display results such as:
- Strong password
- Weak password (with reasons)
- Found in data breaches (with the number of times exposed)