def get_random_key(size=10): # Generates random sequence of chars key = "" for i in range(size): key += random.choice(string.lowercase) return key