Skip to content

Commit

Permalink
Addes generate.py (main file) which can print the password.
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithAaron committed Jul 21, 2021
0 parents commit 5105b6c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions generate.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import random

lower = "abcdefghijklmnopqrstuvwzyz"
upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
numbers = "0123456789"
symbols = "[]{}()*;/,_-"

all = lower + upper + number + symbols
length = 16
password = "".join(random.sample(all,length))
print "password"

0 comments on commit 5105b6c

Please sign in to comment.