I'm missing a feature that only ASCII characters can be used for the Clan Name.
Or the best only a-z, A-Z and 0-9, characters
For example with:
if len(text) < 3 or len(text) > 10 or not re.match("[\w]+$", text) or not re.match('^[A-Za-z0-9]+$', text)...