from password_generator import PasswordGenerator

generator = PasswordGenerator(
    length=16,
    include_uppercase=true,
    include_lowercase=true,
    include_digits=true,
    include_special=true,
    exclude_ambiguous=false
)

password = generator.generate()
print(f'Generated password: {password}')
print(f'Strength: {generator.estimate_strength(password)}')