'''This is the python runner file''' import module1, module2, time #calling functions directly from module1 module1.a_function() #calling functions directly from module2 module2.another_function() time.sleep(1) print("3 modules have been imported.") #using a class from a module my_dog = module1.Dog() my_dog.bark() my_dog.dog_spawn_window()