1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/advlabdb/independent_funs.py
2022-05-09 02:10:30 +02:00

16 lines
385 B
Python

from random import choice
from string import ascii_letters, digits
def parse_bool(str):
str_lower = str.lower()
if str_lower == "false":
return False
elif str_lower == "true":
return True
else:
raise ValueError(f'Can not parse a bool from "{str}"')
def randomPassword():
return "".join(choice(ascii_letters + digits) for i in range(15))