extend password characters
This commit is contained in:
parent
166934a526
commit
bded598a6e
2
raps.py
2
raps.py
@ -12,7 +12,7 @@ def create_secret():
|
|||||||
|
|
||||||
def generate_password():
|
def generate_password():
|
||||||
import string
|
import string
|
||||||
alphabet = string.ascii_letters + string.digits
|
alphabet = string.ascii_letters + string.digits + '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}'
|
||||||
return ''.join(random.choice(alphabet) for i in range(24))
|
return ''.join(random.choice(alphabet) for i in range(24))
|
||||||
|
|
||||||
def month_timestamp():
|
def month_timestamp():
|
||||||
|
Loading…
Reference in New Issue
Block a user