This is pretty much what I have right now:
import time import sys done = \'false\' #here is the animation def animate(): while done == \'false\':
Its all done with a few lines of code:
import time import os anime = ["|", "/", "-", "\\"] done = False while done == False: for i in anime: print('Please wait while system is Loading...', i) os.system('clear') time.sleep(0.1)
Tested and working successfully in the terminal.