Skip to content

Automatically create morethan one whatsapp group for specific contacts using Python.

Notifications You must be signed in to change notification settings

subithou/Auto-whatsapp-group-creation-using-Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Auto whatsapp group creation using python

  • Automatically create multiple whatsapp group for specific contacts using python.
  • You can create groups how much you want.

Requirements

pip install pyautogui

Python code

  • First open the Whatsapp desktop version (Not whatsapp web)
  • Save the below code as filename.py extension in your computer and run the code.
from time import time
from pyautogui import hotkey, press, typewrite 
import time

# move to whatsapp desktop version
hotkey('alt', 'tab')

# short key for open create new group in whatsapp desktop version
hotkey('ctrl', 'shift', 'n' )

# Specify how many groups you want to create
no_of_group = 1


for j in range(0,no_of_group): 
    for i in range(0,1):
        typewrite("unnikkuttan")  # Specify the contact name as per your phone with in double quote
        press('enter')
    
    press('enter')
    typewrite("GRP4") # Specify group name with in double quote
    press('enter')  # In this step we successfully complete the creation of a group
    time.sleep(3)
    hotkey('ctrl', 'shift', 'n' ) # short key for open create new group 

About

Automatically create morethan one whatsapp group for specific contacts using Python.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published