Skip to content

Commit 58660ec

Browse files
committed
first commit
0 parents  commit 58660ec

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

run.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)