mirror of
https://github.com/bhattsameer/Bombers.git
synced 2023-08-10 21:12:53 +03:00
Add files via upload
This commit is contained in:
parent
0d7eddbea1
commit
101ec84a92
20
numspy_bomber.py
Normal file
20
numspy_bomber.py
Normal file
@ -0,0 +1,20 @@
|
||||
from numspy import Way2sms
|
||||
|
||||
try:
|
||||
w2s = Way2sms()
|
||||
|
||||
mobile_number= int(input("Enter the 10 digit Mobile number on which you want bomb: "))
|
||||
message= input("Enter message: ")
|
||||
n = int(input("How many messsages you want to send? (limit is 100/day): "))
|
||||
|
||||
username = input("Your way2sms username: ")
|
||||
password = input("Your way2sms password: ")
|
||||
w2s.login(username,password)
|
||||
|
||||
for i in range(0,n):
|
||||
w2s.send(mobile_number,message)
|
||||
print(str(i+1)+" messages sent!")
|
||||
|
||||
w2s.logout()
|
||||
except Exception as e:
|
||||
print("Something is wrong try again!")
|
Loading…
Reference in New Issue
Block a user