Message-Spammer

Its a simple programme with which you can have fun with ur friends and annoy them by sending many texts at once

View the Project on GitHub Abdulqadir8604/Message-Spammer

Welcome to My Page

You’ll have to create another txt file where you will give the text to be spammed….

Code

import pyautogui
import time

time.sleep(5)
f = open("text", 'r')
for word in f:
    pyautogui.typewrite(word)
    pyautogui.press("enter")