All Projects → phreakyphoenix → WhatsAppBulkMessenger

phreakyphoenix / WhatsAppBulkMessenger

Licence: GPL-3.0 license
This tools sends WhatsApp messages and invites directly to people on WhatsApp itself, without saving their contacts 🌠

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to WhatsAppBulkMessenger

tithiwa
Automate Web WhatsApp with selenium in python.
Stars: ✭ 17 (-76.71%)
Mutual labels:  whatsapp, whatsapp-api, selenium-python
whatsapp-chatbot-1c-example
Внешняя обработка для программы 1С:Предприятие, которая демонстрирует реализацию простого чат-бота для мессенджера WhatsApp.
Stars: ✭ 13 (-82.19%)
Mutual labels:  whatsapp, whatsapp-api
superchats
SuperChats is a premium library with unique features that control Whatsapp functions. With Superchats you can build service bots, multiservice chats or any system that uses whatsapp
Stars: ✭ 100 (+36.99%)
Mutual labels:  whatsapp, whatsapp-api
whatsapp-api-client
This library helps you easily create a javascript application with Whatsapp support
Stars: ✭ 39 (-46.58%)
Mutual labels:  whatsapp, whatsapp-api
Venom
Venom is the most complete javascript library for Whatsapp, 100% Open Source.
Stars: ✭ 3,457 (+4635.62%)
Mutual labels:  whatsapp, whatsapp-api
wppconnect-server
Wppconnect Server is a ready-to-use API, just download, install, and start using, simple as that.
Stars: ✭ 290 (+297.26%)
Mutual labels:  whatsapp, whatsapp-api
Nana-MD
Nana Multi Device Testing Bot
Stars: ✭ 29 (-60.27%)
Mutual labels:  whatsapp, whatsapp-group
python-appium-framework
Complete Python Appium framework in 360 degree
Stars: ✭ 43 (-41.1%)
Mutual labels:  selenium-webdriver, selenium-python
PedeWhats
Projeto "Pede Whats", para solicitação de diversos tipos de comidas através do Whatsapp diretamente para o restaurante!
Stars: ✭ 18 (-75.34%)
Mutual labels:  whatsapp, whatsapp-api
Whatsapp-Group-Contacts-Scraper
How to scrap whatsapp group contacts from https://web.whatsapp.com/
Stars: ✭ 65 (-10.96%)
Mutual labels:  whatsapp, whatsapp-group
wappdriver
Wondering how to send WhatsApp messages using Python using only 3 lines of code? You have come to the right place!
Stars: ✭ 40 (-45.21%)
Mutual labels:  whatsapp, selenium-webdriver
whatsapp-http-api
WhatsApp HTTP API that you can configure in a click!
Stars: ✭ 229 (+213.7%)
Mutual labels:  whatsapp, whatsapp-api
Auto-Download-QQMail-Attach
Python + Selenium + Chrome 模拟登陆QQ邮箱,批量下载附件,本地重命名
Stars: ✭ 38 (-47.95%)
Mutual labels:  selenium-webdriver, selenium-python
WhatSoup
A web scraper that exports your entire WhatsApp chat history.
Stars: ✭ 86 (+17.81%)
Mutual labels:  whatsapp, selenium-python
Instagram-Giveaways-Winner
Instagram Bot which when given a post url will spam mentions to increase the chances of winning. Win Instagram Giveaways!
Stars: ✭ 95 (+30.14%)
Mutual labels:  selenium-webdriver, selenium-python
Whatsapp Web.js
A WhatsApp client library for NodeJS that connects through the WhatsApp Web browser app
Stars: ✭ 4,103 (+5520.55%)
Mutual labels:  whatsapp, whatsapp-api
google-meet-bot
Bot for scheduling and entering google meet sessions automatically
Stars: ✭ 33 (-54.79%)
Mutual labels:  selenium-webdriver, selenium-python
arjuna
Arjuna is a Python based test automation framework developed by Rahul Verma (www.rahulverma.net).
Stars: ✭ 20 (-72.6%)
Mutual labels:  selenium-webdriver, selenium-python
waio
Is a pretty simple and fully asynchronous framework for WhatsApp Business API written in Python 3.7 with asyncio and aiohttp.
Stars: ✭ 18 (-75.34%)
Mutual labels:  whatsapp, whatsapp-api
Whatsappbot
Send messages to any person in any time how much you want.
Stars: ✭ 104 (+42.47%)
Mutual labels:  whatsapp, selenium-webdriver

WhatsApp Bulk Messenger 📢

🎯 What it does

This tool makes adding multiple people to a WhatsApp group much easier.

To prevent spam, WhatsApp doesn’t allow you to add someone not there in your contact list, to a group. So you'd end up wasting time manually adding all the numbers that you want to your phone. Or you have to send them the group link over email etc., which they might not immediately respond to.

This tool allows you to directly send the link to a list of people, on WhatsApp itself, who can instantly join your group. 🎉

If you like it, Do star 🌟 the repo and show some love. ❤️

🚀 Getting Started

🔗 Dependencies

  1. Google Chrome : I expect you've it already installed.

  2. Chromedriver : Please follow the commands to download Chromedriver or from the official download page.

    wget https://chromedriver.storage.googleapis.com/2.41/chromedriver_linux64.zip

    unzip chromedriver_linux64.zip

    Once downloaded you can configure it by using:

    sudo mv chromedriver /usr/bin/chromedriver

    sudo chown root:root /usr/bin/chromedriver

    sudo chmod +x /usr/bin/chromedriver

    Process for installing Chromedriver on Windows is also the same as above.

🚶 Basic installation

You may consider using virtualenv to create isolated Python environments.

  1. Git clone this project from your terminal or download the zip from GitHub web.
  2. Activate your virtual environment if you made one, using source <venv dir>/activate
  3. cd to the project folder.
  4. Install the requirements using pip install -r requirements.txt

📱 Adding Phone Numbers

You may use any or all of the following methods to enter the mobile numbers

  1. When you execute python run.py, you can enter any number of comma separated 10 digit phone numbers at the prompt, at once.
  2. Update the variable phone with a comma separated list of phone numbers.
  3. Make a file called numbers.txt which will store all the 10 digit numbers, each on a line. To use this feature, uncomment the three commented lines in run.py for input from file.

🏃 Running

  1. Open the file run.py and update the variable msg with the message you want to send to all the numbers.
  2. Make sure you've added the numbers properly. Make sure there are no duplicates.
  3. When the automated Chrome browser window opens up, be ready to scan the QR code with your phone to sign in to WhatsApp Web, more info on how to do this can be found in the WhatsApp Web faq.
  4. Go grab a 🍩, you've earned it.

🌠 Advanced Tips and Tricks

  1. You can add individual messages for each contact, however that will require elementary knowledge in Python, this could be done using a file for input, and might be included in future releases.
  2. For using country codes other than India but only one country, please change it in the url string in run.py.
  3. For multiple countries, please remove the 91 from url string, and prepend each number directly with the country code, without plus symbol, for example 19876543210, where 1 is prepended for the US.
  4. You can use any browser, not just Chrome as long as it has a supporting webdriver and install it manually.

🐉 Debugging

This program uses a CSS Selector to find out where exactly to write the message, just like a human would. And that keeps changing over time based on how WhatsApp Web is designed. So all we have to do is update the CSS Selector in the code, by doing the following:

  1. Right click on the white space in WhatsApp Web where you type the message,
  2. Press Inspect element
  3. From the inspector in chrome or any browser you're using, copy the CSS selector
  4. Update the css_selector variable in the code.

Copy CSS Selector from WhatsApp

That's it. 😃

💠 Supporting Python3

Use the urllib.parse.quote function instead of the urllib.quote as in Py2, and obviously use brackets for print. That's it!

Update: Now it supports both versions, just uncomment the library you need in imports. Defaults to Py3.

🎭 Disclaimer

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. The developers claim no responsibility and offer no warranty.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].