password-checker

A Python package to check vulnerability and strength of a password.


Keywords
cybersecurity, information-security, password, password-checker, vulnerability
License
MIT
Install
pip install password-checker==1.0.2

Documentation

Python Password Checker

A Python package to check vulnerability and strength pf a password.

Usage

# importing the package 
from password_checker import pc4

checker = ps4.PasswordChecker('YOUR_PASSWORD')

# The PasswordChecker will take String as a Argument

# To check vulnerability of a password.

checker.isvulnerable()  # Returns True if it is vulnerable.
# importing the package 
from password_checker import pc4

checker = ps4.PasswordChecker('YOUR_PASSWORD')

# The PasswordChecker will take String as a Argument

# To check Strength of a password.

checker.isstrength()  # Returns True if it is following password policy.