Writing a Python script to automatically send text messages to people, spamming their phones into oblivion.
In this video, I spam people's phones with text messages and WhatsApp messages using Python. The Python script can send and spam so many msgs it's mad. Might be the first of a series of 'coding pranks' 🤔.
👨💻 The code! Just copy and paste the below into a python file (make sure you save as .py). You obv need to have python installed.
---------------------------------------------------
import pyautogui #make sure you have this installed via pip
import time
time.sleep(10)
for i in range(5000):
time.sleep(0.1)
pyautogui.keyDown('ctrl')
pyautogui.press('v')
pyautogui.keyUp('ctrl')
pyautogui.press('enter')
Physically copy whatever message you want to send before starting the bot.
Then run the code and quite quickly open up the messaging app and click onto
the text field before it starts sending them.
---------------------------------------------------
⭐️ New viewers:
I cover all things coding, such as app development, web development, artificial intelligence (AI), machine learning, game development, and more! If you're interested in any of these things make sure you hit that subscribe button.
#creatornow