-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRun.py
27 lines (26 loc) · 842 Bytes
/
Run.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
import os, platform, time
try:
import requests
except ImportError:
print('\n [×] requests module not installed!...\n')
os.system('pip install requests')
try:
import concurrent.futures
except ImportError:
print('\n [×] Futures module not installed!...\n')
os.system('pip install futures')
try:
import bs4
except ImportError:
print('\n [×] Bs4 module not installed!...\n')
os.system('pip install bs4')
print('\n\x1b[1;37m[•] Checking Update...');time.sleep(0.5)
os.system('git pull')
def Run():
bit = platform.architecture()[0]
if bit == '64bit':
print("\x1b[1;92m[•] Congratulations ! Your Device Support This Tool")
import ha
else:
exit('\033[1;31m[×] Sorry, Your Device Not Support This Tool')
Run()