Social Media Spam

 


In this post, I'll show you how you can spam your friends on any social media platform by using few lines of Python.

Step 1: 

import pyautogui
import time

Step 2:

while True:
    time.sleep(4)
    pyautogui.typewrite("hello")
    time.sleep(2)
    pyautogui.press('enter')

Complete Code:

import pyautogui
import time
while True:
    time.sleep(4)
    pyautogui.typewrite("hello")
    time.sleep(2)
    pyautogui.press('enter')
Watch YouTube tutorial for better understanding:

Comments