reg/utils.py
author nishanth
Fri, 09 Apr 2010 15:35:40 +0530
changeset 6 057498d12450
parent 2 c11afa8623f7
permissions -rw-r--r--
users can now register but still there is no concept of activation e-mail .

import string
import random

def gen_key(no_of_chars):
    allowed_chars = string.digits+string.uppercase
    return ''.join([random.choice(allowed_chars) for i in range(no_of_chars)])