19
Make Spam bot in Python in just 6 lines
1 Hello 👋
In this post I will show you how to make simple spam bot in Python in just 6 lines of code.
First we need to install Pysimplegui library, we can do it by running this command
pip install pysimplegui
Next, we need to import pysimplegui and time library. We can use this code
import pysimplegui, time
Now let's make a program for spamming.
First we need add a timer, because you will need some time to go to Instagram or something.
Then we need ad a whole loop for the spamming functionality
Here is the code:
time.sleep(5) #delay for 5 sec
while True: #endless loop
pyautogui.write("heyy")
pyautogui.press("enter")
time.sleep(0.2)
That's the whole code you need to Spam your friend.
19