Спамер whatsapp на python

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Python Script to spam your friends XD

License

Aman-zishan/spam-whatsapp

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Читайте также:  Какие есть html шрифты

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Python script to spam your friends on WhatsApp 😍

Do not use this script to harass people. This script is build just for fun, I am not responsible for the consequences 🙂

Tech stack used:

$git clone https://github.com/Aman-zishan/spam-whatsapp.git
#windows $pip install -r requirements.txt #linux/mac OS $pip3 install -r requirements.txt

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

This light and simple script written in Python will allow you to send massive messages to a contact, you only need to indicate the telephone number of this and you will see how the magic happens in your console :o.

License

codewithrodi/Whatsapp-Spam-Bot

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

A magical script that will send mass messages to a number you specify via whatsapp.

You just have to execute a series of commands in your terminal to initialize the script and start sending messages in bulk to your friends via WhatsApp.

# Cloning the repository git clone https://github.com/CodeWithRodi/Whatsapp-Spam-Bot/ # Entering the folder with the source code cd Whatsapp-Spam-Bot # Installing the necessary modules pip install -r Requirements.txt # Starting the script python3 Script.py

Remember drink water my love.

About

This light and simple script written in Python will allow you to send massive messages to a contact, you only need to indicate the telephone number of this and you will see how the magic happens in your console :o.

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

GUI based Automated spammer for WhatsApp.

neeru1207/WhatsApp-Spammer

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Windows GUI equipped Automated spammer for WhatsApp.

This application is purely for learning purposes. Do not use it for wrong purposes such as harassing or spreading hate or spamming.

You need to have Python 3 installed on your PC. If you don’t, all you need to do is go to https://www.python.org/downloads/ and download the latest version of Python OR You could go to https://anaconda.org/ and download Anaconda.

conda create --name newenv conda activate newenv conda install selenium

Downloading Chrome webdriver

You need to download Chrome webdriver, corresponding to your version of Google Chrome. Go to http://chromedriver.chromium.org/downloads and download the suitable version.

Move into the directory containing the application. Eg:

cd Desktop cd WhatsApp Spammer

to launch the application. You need to have an active internet connection and you need to scan the QR code within 20 seconds after pressing on the spam button for it to function.

alt text

This application uses Selenium web automation. Based on the data entered by the user, the application opens a web browser and once the user logs into his/her WhatsApp Web, finds the target and spams the message the desired number of times.

Feel free to open a pull request if any bugs are found or something can be improved.

About

GUI based Automated spammer for WhatsApp.

Источник

Making a WhatsApp spammer with python under 10 lines of code.

Do you ever think of spamming your friends on WhatsApp by sending messages frequently to any group or a particular person?. If you do, then here, let us create a simple WhatsApp spammer with python under 10 lines of code.

For this task, we require a simple module named pyautogui which is a GUI automation python module to control keyboard and mouse events. You can directly install by running ‘pip install pyautogui’ on the command shell.

import pyautogui as pt
import time

limit = input("Enter limit:")
message = input("Enter message:")
i = 0
time.sleep(5)

while i int(limit):
pt.typewrite(message)
# the message is written where -
# the cursor belongs

pt.press("enter")

i+=1

WhatsApp automation

Now, you can set the limit of messages you want to send as well as the message in the Command Prompt itself. If you run this code it will give you five seconds to open WhatsApp( You can specify your time ) and point the cursor towards the message input box corresponding to the person or group you want to send messages to. The pt.typewrite( ) is a function that helps to write the messages automatically and pt.press( ) function helps to send the message by pressing enter. We are writing this inside a while loop so that it will run until it reaches the limit.

Basically, this program writes characters to which the cursor belongs. So in this case it will write the message in the message input box and press enter and we have done.

Источник

Оцените статью