imaging_api.utils.passwords =========================== .. py:module:: imaging_api.utils.passwords Functions --------- .. autoapisummary:: imaging_api.utils.passwords.generate_complex_password Module Contents --------------- .. py:function:: generate_complex_password(length: int = 15) -> str Generate a complex password similar to MlkPwgen.PasswordGenerator.GenerateComplex. :param length: Length of the password to generate. Default is 15. :type length: int :returns: A complex password of the requested length containing at least one lowercase letter, one uppercase letter, one digit, and one special character. :rtype: str