reg/utils.py
author nishanth
Fri, 09 Apr 2010 11:46:35 +0530
changeset 3 182f216da4a8
parent 2 c11afa8623f7
child 6 057498d12450
permissions -rw-r--r--
made the login view. have to write templates and check it.
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
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     4
def gen_key():
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     5
    allowed_chars = string.digits+string.uppercase
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     6
    return ''.join([random.choice(allowed_chars) for i in range(10)])