2019-07-07 15:17:38 +00:00
|
|
|
"""Password generator allows you to generate a random password of length N."""
|
2019-10-21 20:05:12 +00:00
|
|
|
from random import choice, shuffle
|
2019-07-07 15:17:38 +00:00
|
|
|
from string import ascii_letters, digits, punctuation
|
|
|
|
|
|
|
|
|
|
|
|
def password_generator(length=8):
|
|
|
|
"""
|
|
|
|
>>> len(password_generator())
|
|
|
|
8
|
|
|
|
>>> len(password_generator(length=16))
|
|
|
|
16
|
|
|
|
>>> len(password_generator(257))
|
|
|
|
257
|
|
|
|
>>> len(password_generator(length=0))
|
|
|
|
0
|
|
|
|
>>> len(password_generator(-1))
|
|
|
|
0
|
|
|
|
"""
|
|
|
|
chars = tuple(ascii_letters) + tuple(digits) + tuple(punctuation)
|
2019-10-05 05:14:13 +00:00
|
|
|
return "".join(choice(chars) for x in range(length))
|
2019-07-07 15:17:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
# ALTERNATIVE METHODS
|
2017-09-28 21:35:52 +00:00
|
|
|
# ctbi= characters that must be in password
|
2019-07-07 15:17:38 +00:00
|
|
|
# i= how many letters or characters the password length will be
|
|
|
|
def alternative_password_generator(ctbi, i):
|
|
|
|
# Password generator = full boot with random_number, random_letters, and
|
|
|
|
# random_character FUNCTIONS
|
2019-10-21 20:05:12 +00:00
|
|
|
# Put your code here...
|
2019-10-22 17:13:48 +00:00
|
|
|
i = i - len(ctbi)
|
|
|
|
quotient = int(i / 3)
|
|
|
|
remainder = i % 3
|
2020-05-01 21:36:35 +00:00
|
|
|
# chars = ctbi + random_letters(ascii_letters, i / 3 + remainder) +
|
|
|
|
# random_number(digits, i / 3) + random_characters(punctuation, i / 3)
|
2019-10-22 17:13:48 +00:00
|
|
|
chars = (
|
|
|
|
ctbi
|
|
|
|
+ random(ascii_letters, quotient + remainder)
|
|
|
|
+ random(digits, quotient)
|
|
|
|
+ random(punctuation, quotient)
|
|
|
|
)
|
|
|
|
chars = list(chars)
|
|
|
|
shuffle(chars)
|
|
|
|
return "".join(chars)
|
|
|
|
|
|
|
|
# random is a generalised function for letters, characters and numbers
|
|
|
|
|
|
|
|
|
2019-10-21 20:05:12 +00:00
|
|
|
def random(ctbi, i):
|
2019-10-22 17:13:48 +00:00
|
|
|
return "".join(choice(ctbi) for x in range(i))
|
|
|
|
|
|
|
|
|
2017-09-28 21:35:52 +00:00
|
|
|
def random_number(ctbi, i):
|
2019-07-07 15:17:38 +00:00
|
|
|
pass # Put your code here...
|
2018-01-06 06:54:10 +00:00
|
|
|
|
|
|
|
|
2017-09-28 21:35:52 +00:00
|
|
|
def random_letters(ctbi, i):
|
2019-07-07 15:17:38 +00:00
|
|
|
pass # Put your code here...
|
2018-01-06 06:54:10 +00:00
|
|
|
|
|
|
|
|
2017-09-28 21:35:52 +00:00
|
|
|
def random_characters(ctbi, i):
|
2019-07-07 15:17:38 +00:00
|
|
|
pass # Put your code here...
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2019-10-05 05:14:13 +00:00
|
|
|
length = int(input("Please indicate the max length of your password: ").strip())
|
2019-10-22 17:13:48 +00:00
|
|
|
ctbi = input(
|
|
|
|
"Please indicate the characters that must be in your password: "
|
|
|
|
).strip()
|
2019-10-05 05:14:13 +00:00
|
|
|
print("Password generated:", password_generator(length))
|
2019-10-22 17:13:48 +00:00
|
|
|
print(
|
|
|
|
"Alternative Password generated:", alternative_password_generator(ctbi, length)
|
|
|
|
)
|
2019-10-05 05:14:13 +00:00
|
|
|
print("[If you are thinking of using this passsword, You better save it.]")
|
2019-07-07 15:17:38 +00:00
|
|
|
|
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
if __name__ == "__main__":
|
2019-07-07 15:17:38 +00:00
|
|
|
main()
|