class documentation

Undocumented

Class Method normalize_email Normalize the email address by lowercasing the domain part of it.
Method get_by_natural_key Undocumented
Method make_random_password Generate a random password with the given length and given allowed_chars. The default value of allowed_chars does not have "I" or "O" or letters and digits that look similar -- just to avoid confusion.
@classmethod
def normalize_email(cls, email): (source)

Normalize the email address by lowercasing the domain part of it.

def get_by_natural_key(self, username): (source)

Undocumented

def make_random_password(self, length=10, allowed_chars='abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789'): (source)

Generate a random password with the given length and given allowed_chars. The default value of allowed_chars does not have "I" or "O" or letters and digits that look similar -- just to avoid confusion.