-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjake@linux
executable file
·46 lines (43 loc) · 930 Bytes
/
jake@linux
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
42
43
44
45
46
#!/usr/bin/env python3
# Created By: Jake@Linux
# Created On: Sat 23 Sep 2023 11:20:15 AM CDT
# Project:
from tqdm import tqdm
import time
import os
from pyfiglet import Figlet
f=Figlet(font='slant')
banner = f.renderText("Merry\nChristmas!")
print("Traveling.........")
time.sleep(1.0)
for i in tqdm (range (100),
desc="Seeking room.....",
ncols=100):
time.sleep(0.01)
print()
print("No room found......")
time.sleep(.5)
print()
for i in tqdm (range (100),
desc="stable located.....",
ncols=100):
time.sleep(0.01)
print()
print("Manger prepped......")
time.sleep(.5)
print()
for i in tqdm (range (100),
desc="Star shining.......",
ncols=100):
time.sleep(0.01)
print()
print("Wise men and shepherds seeking.....")
time.sleep(.5)
#os.system('clear')
time.sleep(.5)
print("On this day in Bethlehem, a child is born...")
print()
print(banner)
print()
print("Glory to the newborn King!")
print("Luke 2:1-20")