Add files via upload

This commit is contained in:
Sameer Bhatt (debugger) 2018-05-26 10:49:36 +05:30 committed by GitHub
parent 0d7eddbea1
commit 101ec84a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
numspy_bomber.py Normal file
View 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!")