reg/utils.py
author nishanth
Sat, 17 Apr 2010 13:15:05 +0530
changeset 94 5de0009c0d71
parent 6 057498d12450
permissions -rwxr-xr-x
added 500 template and added clean on comments and added comments in view report.

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