└── bloxgen.py /bloxgen.py: -------------------------------------------------------------------------------- 1 | import random 2 | 3 | lower = "abcdefghijklmnopqrstuvwxyz" 4 | upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 5 | numbers = "1234567890" 6 | symbols = "_" 7 | 8 | string = lower + upper + numbers + symbols 9 | length = 12 10 | 11 | password = "".join(random.sample(string,length)) 12 | 13 | print("Password: " + password) 14 | --------------------------------------------------------------------------------