reg/utils.py
author nishanth
Tue, 13 Apr 2010 14:51:22 +0530
changeset 27 ea6aef4b379d
parent 6 057498d12450
permissions -rw-r--r--
instead of redirecting I am now raising http 404 .

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