def _check_username(username): return all([c in string.digits + string.ascii_lowercase for c in username.lower()])