PyAutoGUI is a Python module that helps us automate the key presses and mouse clicks programmatically. In this article we will learn to develop a spam bot using PyAutoGUI.
Spamming – Refers to sending unsolicited messages to large number of systems over the internet.
This mini-project can be used for many real-life applications like:
- Remind your friends or relatives to do a particular task after every particular time interval
- Can be used for advertisement purpose
In this article we will show the working of spam bot on telegram, but the code can also work for WhatsApp, Instagram etc. i.e. anywhere we find a text field it will work the same way.
Approach
- Import module
- Add delay of 2 second in the execution of the program
- Create mechanism to generate text messages. typewrite() function of pyautogui helps to write the text and sleep function helps us specify the particular time interval (in seconds) after which the next instruction has to be executed. datetime.datetime.now() function helps the user keep a track of when the message was sent.
Syntax:
typewriter(“<message>”)
Follow these simple steps to develop a spam bot using python:
Example:
Python3
import pyautogui, time, datetime
time.sleep( 2 )
while True :
print (datetime.datetime.now())
pyautogui.typewrite( "Reminder: Drink water!" )
pyautogui.press( "enter" )
time.sleep( 31 )
print (datetime.datetime.now())
pyautogui.typewrite( "Reminder: Take medicine!" )
pyautogui.press( "enter" )
time.sleep( 31 )
print (datetime.datetime.now())
pyautogui.typewrite( "Reminder: Take the dog for a walk!" )
pyautogui.press( "enter" )
time.sleep( 31 )
print (datetime.datetime.now())
pyautogui.typewrite( "Reminder: Drink water!" )
pyautogui.press( "enter" )
time.sleep( 31 )
print (datetime.datetime.now())
pyautogui.typewrite( "Reminder: Drink water!" )
pyautogui.press( "enter" )
time.sleep( 31 )
|
Output:

Date and time at which the message was sent
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
02 Feb, 2021
Like Article
Save Article