forked from sinoobie/SpamSms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
68 lines (60 loc) · 1.35 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import os,time,sys,shutil
class Main:
def __init__(self):
self.detekos()
def menu(self):
print("""
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; S P A M S M S ;
;---------------------------;
; Author : Kang-newbie ;
; Contact : t.me/kang_nuubi ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1. Spam TRI
2. Spam Grab
3. Spam HooqTV
4. Spam OYOROOMS
5. Spam TelkomNyet
6. Spam Sms Gratis
""")
pilih=int(input('/Kang-newbie: '))
if pilih == 1:
import src.sms
elif pilih == 2:
import src.grab
elif pilih == 3:
import src.hooq
elif pilih == 4:
import src.oyo
elif pilih == 5:
print("""
;;;;;;;;;;;;;;;;;;;
; Spam TelkomNyet ;
;;;;;;;;;;;;;;;;;;;
1. Spam TelkomNyet-v1
2. Spam TelkomNyet-v2
""")
pilihlagi=int(input('/Kang-newbie: '))
if pilihlagi == 1:
import src.telnyet
elif pilihlagi == 2:
import src.telnyet2
else: print("[!] lihat menu dong(o)");self.menu()
elif pilih == 6:
import src.gratis
else: print("[!] lihat menu dong(o)");self.menu()
def detekos(self):
#remove cache
try:
shutil.rmtree("src/__pycache__")
except: pass
if os.name in ['nt','win32']:
os.system('cls')
else: os.system('clear')
self.menu()
try:
Main()
except KeyboardInterrupt:
exit('[Exit] Key interrupt')
except Exception as F:
print('Err: %s'%(F))