forked from vaibhavguru/https-github.com-Rajkumrdusad-Tool-X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Tool-X.py
33 lines (29 loc) · 708 Bytes
/
.Tool-X.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
# Tool Name :- Tool Kit
# Author :- Rajkumar Dusad
# Date :- 28/4/2018
# Powered By :- Aex Software's
import sys
import os
from modules.logo import exit
from modules.menu import ToolX
class chk(object):
def chos(self):
if "linux" in sys.platform:
# Running Tool-X on linux ....
pass
elif "darwin" in sys.platform:
pass
# print("Sorry, its not available for mac right now...")
ex()
elif "win" in sys.platform:
print("Sorry, its not available for windows right now...")
ex()
else:
print("If Tool-X not support for \'%s\' right now !!!" %sys.platform)
def Tool_X():
try:
chk().chos()
ToolX()
except KeyboardInterrupt:
exit()
Tool_X()