Sending Unlimited SMS With Python!

In This Video Using:

  • 1) Python
  • 2) Pyautogui Module
  • 3) Time Module

Surprise Your Friends!

Pyautogui is a module of python. That module will help you to do some tricks fun just like here one we send unlimited sms on same time in whatsapp so Let's Go.

How To install Pyautogui Module?

pip install pyautogui

Copy The Below Code...

import pyautogui as pg
import time

time.sleep(5)

# Using For Loop

for i in range(10):
    pg.typewrite("How Are You")
    pg.press("Enter")

# Using While Loop

i = 0
while (i==5):
    pg.typewrite("Hi" + str(i))
    pg.press("Enter")
    i = i + 1