Automatic Message WhatsApp With Python

  • Automatic Message WhatsApp With Python : 


Code : 

import random
import pyautogui as pg
import time

words = ('💓', '💖')

time.sleep(8)

for i in range(100):
    a = random.choice(words)
    pg.write("Hey "+ a)
    pg.press('enter')

Comments