def get_random_string()

in producer/producer.py [0:0]


def get_random_string(length):
    letters = string.ascii_lowercase
    return ''.join(random.choice(letters) for i in range(length))