reg/utils.py
author nishanth
Thu, 15 Apr 2010 18:57:55 +0530
changeset 55 53ff84c9192d
parent 6 057498d12450
permissions -rw-r--r--
added a model in feedback for logging users who have already submitted feedback and made changes in corresponding views .

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)])