Follow

whatsapp auto message send | unlimited message send on whatsapp using python


send message on whatsapp using pywhatkit

PyWhatKit is a Python library that allows you to schedule messages to be sent automatically on WhatsApp at a specific time. Here's an example of how you can use PyWhatKit to send a message on WhatsApp:

pywhatkit

import pywhatkit
def send_message(number, message):
pywhatkit.sendwhatmsg(number, message, 0, 0)

send unlimited message using pyautogui on whatsapp

PyAutoGUI is a Python library for automating GUI interactions, including key presses, mouse clicks, and scrolling. While it is not specifically designed for automating messaging on WhatsApp, it is possible to use PyAutoGUI to send messages on WhatsApp by simulating user interactions with the WhatsApp web interface.

pyautogui

import pyautogui as auto
import time

time.sleep(8)
for i in range(100):
auto.write("hallo world!")
auto.press("enter")

No comments:

Post a Comment

Tell us how you like it.