Questions tagged [password-strength]
4 questions
0
votes
1 answer
Password Checking/ Strengthening Password
I'm trying to create an account for a user and I want to strengthen the password, what should I add?
I don't know to strengthen the password, by this I meant that I want to require Upper case and lower case as well as adding numbers to a…

yumie
- 3
- 1
0
votes
0 answers
How to print clickable URL as output using normal print statement in python
I was making a password generator in python. The password generating part works perfectly, but I need to check the strength of generated password using example.com
My doubt is how do I print it to the output screen using the standard print function…

Ajay
- 53
- 8
-1
votes
2 answers
all() function is Python - Works for digits, not for uppercase?
I am currently writing a Log-in code in Python. I am working on password strength detecting, very basic stuff, using if statements and the all() function. I'm not sure why, but when I run this code, I doesn't detect the absence of uppercase…

Programming_Noob
- 1
- 1
-1
votes
2 answers
Python password_strength package and password "strength"
I'm using the password_strength package from PyPi to assess password strength, using a policy of PasswordPolicy.from_names(strength=x).
The package documentation suggests that x=0.66 is a good choice. I've set up a random password generator,…

Tom
- 7,269
- 1
- 42
- 69