We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 58660ecCopy full SHA for 58660ec
run.py
@@ -0,0 +1,8 @@
1
+from data import *
2
+from generator import generate_password
3
+
4
+password_length = int(input("How long should the password be? "))
5
6
+data = alphabet + numbers + special_characters
7
+password = generate_password(password_length, data)
8
+print("Here is your password: {}".format(password))
0 commit comments