How to Make Simple WhatsApp Spam bot in Python?#python #programming #tutorial #coding#short #shorts



How to Make Simple WhatsApp Spam bot in Python?#python #programming #tutorial #coding#short #shorts

How to Make Simple WhatsApp Spam bot in Python?#python #programming #tutorial #coding#short #shorts

Today, we’ll make a simple WhatsApp Spam bot using PYTHON.

Don’t forget to subscribe, like video and below your comment 🙂

———————————————————————–
✔Source Code:

import pyautogui
import time

message = open(“msg.txt”, “r”) # select the your .txt file
time.sleep(10)

for spam in message:
pyautogui.typewrite(spam)
pyautogui.press(“enter”)
time.sleep(0)

———————————————————————–

Comments are closed.