author | nishanth |
Fri, 16 Apr 2010 14:47:42 +0530 | |
changeset 68 | 73720e19d222 |
parent 6 | 057498d12450 |
permissions | -rwxr-xr-x |
2 | 1 |
import string |
2 |
import random |
|
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 | 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)]) |