Skip to content

Instantly share code, notes, and snippets.

@junaidrahim
Created June 6, 2019 05:57
Show Gist options
  • Save junaidrahim/de61d093683483deae48632a48e8fe1d to your computer and use it in GitHub Desktop.
Save junaidrahim/de61d093683483deae48632a48e8fe1d to your computer and use it in GitHub Desktop.
A simple spammer in python
import pyautogui
import time
msg = input("Enter the message: ")
n = input("How many times ?: ")
print("t minus")
count = 5
while(count != 0):
print(count)
time.sleep(1)
count -= 1
print("Fire in the hole!!!")
for i in range(0,int(n)):
pyautogui.typewrite(msg + '\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment