Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inforkgodara/automate-whatsapp-messages-python-script
This is a simple script that sends multiple WhatsApp messages using python script.
https://github.com/inforkgodara/automate-whatsapp-messages-python-script
bot bulk-messages bulk-sender multiple-messages pyautogui pyautogui-automation python python-automation spam-tool spamming-tools web-whatsapp whatsapp whatsapp-auto-messaging whatsapp-automation whatsapp-bot whatsapp-chat whatsapp-message-sender whatsapp-web
Last synced: about 2 months ago
JSON representation
This is a simple script that sends multiple WhatsApp messages using python script.
- Host: GitHub
- URL: https://github.com/inforkgodara/automate-whatsapp-messages-python-script
- Owner: inforkgodara
- Created: 2021-06-06T19:53:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-15T21:53:24.000Z (over 3 years ago)
- Last Synced: 2023-03-05T04:49:02.637Z (almost 2 years ago)
- Topics: bot, bulk-messages, bulk-sender, multiple-messages, pyautogui, pyautogui-automation, python, python-automation, spam-tool, spamming-tools, web-whatsapp, whatsapp, whatsapp-auto-messaging, whatsapp-automation, whatsapp-bot, whatsapp-chat, whatsapp-message-sender, whatsapp-web
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automate Whatsapp Messages Python Script
This is a simple script that sends multiple WhatsApp messages using python script. This is used for educational purposes only. Please don't ruin anyone's phone by sending multiple messages.
## Demo
* Video clip on youtube of the script execution. https://youtu.be/tPm7Zvn4pFY## Prerequisites
In order to run the python script, your system must have the following programs/packages installed.
* Python 3.8: Download it from https://www.python.org/downloads
* Pyautogui: Run in command prompt pip install pyautogui## Approach
* First need to clone this respiratory.
* Open web Whatsapp in any browser. link: https://web.whatsapp.com/
* Run python script script.py using py script.py in the terminal.
* The script will ask you to enter the number of messages and message content in the terminal, after entered both information successfully you keep the cursor in the message bar in the web Whatsapp application to whom you want to send the message.
* The script will sleep for 3 seconds and then begin to send messages continuously until and unless messages not send all.Note: Please use just use for fun not to ruin anyone's phone.
## Legal
* This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by WhatsApp or any of its affiliates or subsidiaries. This is an independent and unofficial software. Use at your own risk. Commercial use of this code/repo is strictly prohibited.## Code
```
import pyautogui
import timenumber_of_messages = int(input('Enter number of messages: '))
message_content = input('Enter message content: ')time.sleep(3)
for num in range(number_of_messages):
pyautogui.write(message_content)
pyautogui.press('enter')print('Script executed successfully')
```Video on youtube: https://youtu.be/tPm7Zvn4pFY