Password Validation

The password validation is done by the function isStrongPassword().

from sanatio import Validator

val = Validator()
isStrongPassword(value)

Returns true if the password is strong enough, false otherwise.

>>> val.isStrongPassword('123456')
False
>>> val.isStrongPassword('123456789@Abc')
True