This is the best I've got, but it doesn't work if I want it to appear on a screen with other information:
timer = 0
loading = "Loading: [----------]"
while timer < 11:
os.system('clear')
print loading
loading = loading.replace("-","=",1)
time.sleep(1)
timer += 1
time.sleep(1)
os.system('clear')
print loading+" Complete!"
I would prefer a method that works on both windows and linux, not requiring a module that doesn't come stock (So I can give others this program who have windows or linux and have it work fine)
If not that's still fine. I can always have a "Dependencies" list.