-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMAIN.py
More file actions
36 lines (30 loc) · 671 Bytes
/
MAIN.py
File metadata and controls
36 lines (30 loc) · 671 Bytes
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
import os, docker, lvm, hadoop as hd, linux, aws
os.system("tput setaf 3")
while(True):
os.system("clear")
print("\t\t------->Technologies Integration<------")
os.system("tput setaf 7")
print("\n")
print(
"""
\t\t\tPress 0: Exit
\t\t\tPress 1: DOCKER
\t\t\tPress 2: HADOOP
\t\t\tPress 3: AWS
\t\t\tPress 4: LVM
\t\t\tPress 5: LINUX
"""
)
choice = int(input("Enter The Choice :-> "))
if choice==0:
break
if choice ==1:
docker.main_menu()
if choice == 2:
hd.HadoopStart()
if choice ==3:
aws.main_menu()
if choice == 4:
lvm.main_loop()
if choice == 5:
linux.StartLinux()