reg/utils.py
author nishanth
Fri, 16 Apr 2010 17:40:57 +0530
changeset 84 bb6a1bd4b3f8
parent 6 057498d12450
permissions -rwxr-xr-x
removed print statement since mod wsgi does not allow printing

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