Skip to content

Instantly share code, notes, and snippets.

@rishi23root
Created October 21, 2021 20:52
Show Gist options
  • Save rishi23root/1a7ec4066ec715aa82b07cae76e9f0e9 to your computer and use it in GitHub Desktop.
Save rishi23root/1a7ec4066ec715aa82b07cae76e9f0e9 to your computer and use it in GitHub Desktop.
Code to spam on any text chatting app 😎
from time import sleep as nap
import pyautogui
print('sleeping for 2 sec, put you cursor on input Field')
nap(2)
def spam(text):
pyautogui.write(f'{text}\n')
spam("Run!")
nap(0.5)
for i in range(50):
spam("Instagram is better | "*i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment