The validity of the email,phone number,password ...
pip install awsome-validity
from validity import validate
check = validate.Validation()
# check what you want.
check.validate_email('1111@qq.com') # True
check.validate_password('1111@qq.com') # True
check.validate_password('12345678899') # FalseFurther features will be added in the future.
https://packaging.python.org/en/latest/tutorials/packaging-projects/