Quick actions

cmd+k|ctrl+k

Navigation

Languages

whats app chat bot

Snippet info

Language

Python

Visibility

public

Author

krishnakanth

Created

2023-01-04T15:55:53.627097Z

Updated

2023-01-04T15:55:53.627097Z

import pyautogui as spam
import time

def spammsg():
    limit = input("Enter the number of message :")
    msg = input("The message :")
    i = 0
    print("You have 5 seconds to go to your messenger and click !")
    time.sleep(5)  
    while i < int(limit):
        spam.typewrite(msg)
        spam.press('Enter')
        i += 1
        
spammsg()
INFO