reg/utils.py
author nishanth
Sat, 17 Apr 2010 14:59:58 +0530
changeset 97 87d522d28a28
parent 6 057498d12450
permissions -rwxr-xr-x
now comments are also displayed on view report page.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     1
import string
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     2
import random
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     3
6
057498d12450 users can now register but still there is no concept of activation e-mail .
nishanth
parents: 2
diff changeset
     4
def gen_key(no_of_chars):
2
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     5
    allowed_chars = string.digits+string.uppercase
6
057498d12450 users can now register but still there is no concept of activation e-mail .
nishanth
parents: 2
diff changeset
     6
    return ''.join([random.choice(allowed_chars) for i in range(no_of_chars)])