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

24 lines
548 B
Python

# Functions not dependent on advlabdb
from random import choice
from string import ascii_letters, digits
from flask import flash
def randomPassword():
return "".join(choice(ascii_letters + digits) for i in range(15))
def flashRandomPassword(password):
flash(f"Random password: {password}", category="warning")
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}"')