import random import time def get_random_seed(): """ Generates a random seed based on system time. """ return random.randint(0, 2**32 - 1)