-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
31 lines (28 loc) · 832 Bytes
/
main.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
# initialise required libs
import usrcheck
quiet,alg,saltSize,artConf=usrcheck.configRead()
from pathlib import Path
if artConf==True and Path('art.py').exists(): # Check if art is enabled AND if art.py exists
import art
# initialise ASCII art
# Define the ASCII art for the text
text_art = r"""
____ _ _
| _ \ _ _| |_| |__ ___ _ __
| |_) | | | | __| '_ \ / _ \| '_ \
| __/| |_| | |_| | | | (_) | | | |
|_| \__, |\__|_| |_|\___/|_| |_|
|___/
"""
# Define the ASCII art for the cat
cat_art = r"""
/\_/\
( o.o )
> ^ <
"""
# initialise other required python files
combined_art = art.insert_cat_randomly(text_art, cat_art)
print(combined_art)
if __name__ == "__main__":
while True:
usrcheck.main_menu()