quiz/utils.py
author nishanth
Wed, 21 Apr 2010 13:20:42 +0530
changeset 31 27aa6ee92aca
parent 12 81cd0140a0f2
child 39 0fa055b8ea98
permissions -rw-r--r--
we shall not track db files since they are changed often. we shall maintain a .bak file which is db file and rename it appropriately before we start using the app.

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