taskapp/utilities/helper.py
author nishanth
Thu, 04 Mar 2010 17:29:00 +0530
changeset 199 946d0fe60606
parent 119 39ab7c460143
permissions -rw-r--r--
now a notification is sent to all the mentors after there is a new claim.

import string,random

def get_key():
    """ return a 10 character random key.
    """
    
    return ''.join([ random.choice(string.uppercase+string.digits) for i in range(10)])