reg/utils.py
author nishanth
Fri, 16 Apr 2010 14:57:55 +0530
changeset 69 b977321ccf6c
parent 6 057498d12450
permissions -rwxr-xr-x
changed the alignment in list events and font size in base.

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