whatsapp python automation

whatsapp automated bot using python

Hey in this post I will let you know how to send or automate hundreds of automated messages using python. So before moving to the code part first you need to understand the concept that how it’s gonna work. the concept is kind of simple all you need is a python pyautogui module and WhatsApp web.

python pyautogui and installation

pyautogui is a python module helps you to automatically click and control the mouse and keyboard event. to install pyautogui you need to open your command prompt (cmd) or terminal and enter the command

pip install pyautogui

This code will install pyautogui in your system. If You Face any pip related issue that mean you haven’t installed python properly in your computer follow the below post to install python properly

Proper python installation Click Here

Now you need to open WhatsApp web and log in with your WhatsApp app by scanning the Qr code shown on your desktop. After successfully logging into your WhatsApp web Now it’s time to move to the code section.

Code

so here we are at code section where we will write the program to automate sending our WhatsApp messages.

import pyautogui as pg
import time

Here in this block of code, I have imported the pyautogui for automating typing and sending of messages and with that, I have also imported a time module to give some time interval between sending texts.

time.sleep(5)

I have given a 5 seconds of sleep time so that the program does not start executing the commands instantly and I have time to place the mouse cursor on the chat field

for i in range(100):
    pg.write(" i love you ")
    time.sleep(0.5)
    pg.press("Enter")

In this block of code, I have run a for loop for repeat sending of messages and used pyautogui module and write the message after that I have given a 0.5 second the time interval between each message and after that, I have given the command to press Enter button in the last line to send messages.

See also  Track Phone Number Using Python

Video tutorial

Here is a video tutorial I have posted on my Instagram reel as an example

Leave a Comment

Your email address will not be published. Required fields are marked *

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

we provide projects, courses, and other stuff for free. in order for running we use Google ads to make revenue. please disable adblocker to support us.