forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loader.py
41 lines (30 loc) · 753 Bytes
/
loader.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Shaurya Pratap Singh
@shaurya-blip
Shows loading message while doing something.
"""
import itertools
import threading
import time
import sys
# The task is not done right now
done = False
def animate(message="loading", endmessage="Done!"):
for c in itertools.cycle(["|", "/", "-", "\\"]):
if done:
break
sys.stdout.write(f"\r {message}" + c)
sys.stdout.flush()
time.sleep(0.1)
sys.stdout.write(f"\r {endmessage} ")
t = threading.Thread(
target=lambda: animate(message="installing..", endmessage="Installation is done!!!")
)
t.start()
# Code which you are running
"""
program.install()
"""
time.sleep(10)
# Then mark done as true and thus it will end the loading screen.
done = True