This project is a Password Complexity Checker tool written in Python. It evaluates the strength of passwords based on several criteria, including length, presence of uppercase and lowercase letters, numbers, and special characters. The tool provides feedback on whether a password is considered strong, moderate, or weak.
- Length Check: Validates that the password is at least 8 characters long.
- Uppercase Letter Check: Ensures the presence of at least one uppercase letter.
- Lowercase Letter Check: Ensures the presence of at least one lowercase letter.
- Number Check: Ensures the presence of at least one digit.
- Special Character Check: Validates the presence of at least one special character.
- Clone the repository:
git clone https://github.com/yourusername/password-complexity-checker.git