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.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
81cd0140a0f2 created the register user functionality.
nishanth
parents:
diff changeset
     1
import string
81cd0140a0f2 created the register user functionality.
nishanth
parents:
diff changeset
     2
import random
81cd0140a0f2 created the register user functionality.
nishanth
parents:
diff changeset
     3
81cd0140a0f2 created the register user functionality.
nishanth
parents:
diff changeset
     4
def gen_key(no_of_chars):
81cd0140a0f2 created the register user functionality.
nishanth
parents:
diff changeset
     5
    allowed_chars = string.digits+string.uppercase
81cd0140a0f2 created the register user functionality.
nishanth
parents:
diff changeset
     6
    return ''.join([random.choice(allowed_chars) for i in range(no_of_chars)])