Its a simple programme with which you can have fun with ur friends and annoy them by sending many texts at once
You’ll have to create another txt file where you will give the text to be spammed….
import pyautogui
import time
time.sleep(5)
f = open("text", 'r')
for word in f:
pyautogui.typewrite(word)
pyautogui.press("enter")